TetaTricks/code/network/Makefile

15 lines
344 B
Makefile
Raw Permalink Normal View History

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