TetaTricks/code/network/Makefile

13 lines
247 B
Makefile
Raw Normal View History

2023-07-14 16:09:53 +02:00
#
# NETWORK EXPERIMENTS
#
COPT = -Wall -DDEBUG_LEVEL=1 -pthread
# --------------------------------------------------
# Experimental Specialized Telnet Server
# (Exemple Minimal Compilable)
emc-tnetd: emc-tnetd.c Makefile
gcc $< $(COPT) -o $@