TetaTricks/code/network/Makefile

15 lines
344 B
Makefile

# -------------------
# NETWORK EXPERIMENTS
# -------------------
COPT = -Wall -DDEBUG_LEVEL=1 -g -pthread
# --------------------------------------------------
# Experimental Specialized Telnet Server
# (Exemple Minimal Compilable)
emc-tnetd: emc-tnetd.c Makefile
gcc $< $(COPT) -o $@
# --------------------------------------------------