upload
This commit is contained in:
19
DEV 4.4/server/Makefile
Normal file
19
DEV 4.4/server/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user