This commit is contained in:
2023-03-24 16:04:40 +01:00
parent d90a85d360
commit bb75b278f5
480 changed files with 63382 additions and 26 deletions

19
DEV 4.4/server/Makefile Normal file
View File

@@ -0,0 +1,19 @@
all : clt.out srv.out
tea.o : ../lib_tea/tea.c
gcc -c $<
df.o : ../lib_df/df.c
gcc -c $<
clt.o:clt.c
gcc -c $<
clt.out: clt.o df.o tea.o
gcc -o clt.out clt.o df.o tea.o
srv.o : srv.c
gcc -c $<
srv.out : srv.o df.o tea.o
gcc -o srv.out srv.o df.o tea.o