aboutsummaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-03-06 09:47:57 +0000
committerbloodstalker <thabogre@gmail.com>2017-03-06 09:47:57 +0000
commit4d533994351ed46ba902c77250b6c68e60a953db (patch)
tree88025b70378e7276694f1ff7770663917bc43a4b /daemon
parentthe header for mutator_aux.h (diff)
downloadmutator-4d533994351ed46ba902c77250b6c68e60a953db.tar.gz
mutator-4d533994351ed46ba902c77250b6c68e60a953db.zip
updated for the new changes
Diffstat (limited to 'daemon')
-rw-r--r--daemon/makefile16
1 files 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.'