modify makefile

This commit is contained in:
ubuntu201711081 2020-12-04 09:13:56 +00:00
parent 31535a0574
commit 9d012b2c6c
1 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,8 @@
CC = gcc
CFLAGS = -lm -Wall -O2
Bin = server client p-server p-client
ServerBin = server p-server
ClientBin = client p-client
Bin = $(ServerBin) $(ClientBin)
all:
make $(Bin)
@ -17,6 +19,14 @@ p-server: socket_wrapper.o p-server.c
p-client: socket_wrapper.o p-client.c
$(CC) -o p-client p-client.c socket_wrapper.o $(CFLAGS)
.PHONY: clean
.PHONY: clean moveall
clean:
rm *.o $(Bin)
rm $(addprefix client_test/,$(ClientBin))
rm $(addprefix server_test/,$(ServerBin))
moveall:
mv client client_test/client
mv p-client client_test/p-client
mv server server_test/server
mv p-server server_test/p-server