exemple minimal compilable

This commit is contained in:
tTh
2023-07-14 16:09:53 +02:00
parent 97909fdcd4
commit 07ae0d5a8a
4 changed files with 109 additions and 0 deletions

12
code/network/Makefile Normal file
View File

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