From 9d012b2c6cb22b4a1263c851972dc199558fb795 Mon Sep 17 00:00:00 2001 From: ubuntu201711081 <201711081@jbnu.ac.kr> Date: Fri, 4 Dec 2020 09:13:56 +0000 Subject: [PATCH] modify makefile --- Makefile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 33a8a16..338070d 100644 --- a/Makefile +++ b/Makefile @@ -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 \ No newline at end of file