APL/DEV 4.4/server/Makefile
2023-03-24 16:04:40 +01:00

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