From 4d533994351ed46ba902c77250b6c68e60a953db Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Mon, 6 Mar 2017 13:17:57 +0330 Subject: updated for the new changes --- daemon/makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/daemon/makefile b/daemon/makefile index 080a089..43498a2 100644 --- a/daemon/makefile +++ b/daemon/makefile @@ -7,22 +7,22 @@ TARGETD=mutatord TARGETS=mutatorserver TARGETC=mutatorclient ##################################RULES################################ -.DEFAULT: all +.DEFAULT:all -.PHONY: all clean help +.PHONY:all clean help $(TARGETC) $(TARGETS) $(TARGETD) -all: $(TARGETD) $(TARGETC) $(TARGETS) +all:$(TARGETC) $(TARGETS) $(TARGETD) .c.o: $(CC) $(CC_FLAGS) -c $< -o $@ -TARGETD: +$(TARGETC): $(TARGETC).o $(CC) $^ $(LD_FLAGS) -o $@ -TARGETS: +$(TARGETS): $(TARGETS).o $(CC) $^ $(LD_FLAGS) -o $@ -TARGETC: +$(TARGETD): $(TARGETD).o daemon_aux.o $(CC) $^ $(LD_FLAGS) -o $@ clean: @@ -30,9 +30,9 @@ clean: help: @echo 'all builds the daemon, the server and the client. all is the default.' - @echo 'mutatord build the daemon' + @echo 'mutatord builds the daemon with the server' @echo 'mutatorc builds the client' - @echo 'mutators builds the client' + @echo 'mutators builds the standalone server' @echo 'clean runs clean.' @echo 'help runs help.' -- cgit v1.2.3