19 lines
266 B
Makefile
19 lines
266 B
Makefile
|
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
|