From 325c01f10f5173e823411e4129c13db5b61d57e2 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Fri, 3 Mar 2017 11:06:34 +0330 Subject: updated for the new files --- daemon/makefile | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'daemon/makefile') diff --git a/daemon/makefile b/daemon/makefile index abe6190..080a089 100644 --- a/daemon/makefile +++ b/daemon/makefile @@ -3,25 +3,36 @@ CC=clang CC_FLAGS= LD_FLAGS= -TARGET=mutatord +TARGETD=mutatord +TARGETS=mutatorserver +TARGETC=mutatorclient ##################################RULES################################ .DEFAULT: all .PHONY: all clean help -all: $(TARGET) +all: $(TARGETD) $(TARGETC) $(TARGETS) .c.o: $(CC) $(CC_FLAGS) -c $< -o $@ -TARGET: +TARGETD: + $(CC) $^ $(LD_FLAGS) -o $@ + +TARGETS: + $(CC) $^ $(LD_FLAGS) -o $@ + +TARGETC: $(CC) $^ $(LD_FLAGS) -o $@ clean: - rm -f *.o *~ $(TARGET) + rm -f *.o *~ $(TARGETD) $(TARGETS) $(TARGETC) help: - @echo 'all builds the target. all is the default.' + @echo 'all builds the daemon, the server and the client. all is the default.' + @echo 'mutatord build the daemon' + @echo 'mutatorc builds the client' + @echo 'mutators builds the client' @echo 'clean runs clean.' @echo 'help runs help.' -- cgit v1.2.3