aboutsummaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-02-28 14:56:19 +0000
committerbloodstalker <thabogre@gmail.com>2017-02-28 14:56:19 +0000
commitd228f7379d335129e6f2bc1fb63b1aeb0c76760f (patch)
treec6ba6c956444a9527f931511ff2837695a1d1655 /daemon
parentjust added a comment (diff)
downloadmutator-d228f7379d335129e6f2bc1fb63b1aeb0c76760f.tar.gz
mutator-d228f7379d335129e6f2bc1fb63b1aeb0c76760f.zip
the daemon makefile
Diffstat (limited to 'daemon')
-rw-r--r--daemon/makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/daemon/makefile b/daemon/makefile
new file mode 100644
index 0000000..66ec91f
--- /dev/null
+++ b/daemon/makefile
@@ -0,0 +1,27 @@
+
+##################################VARS#################################
+CC=clang
+CC_FLAGS=
+LD_FLAGS=
+TARGET=mutatord
+##################################RULES################################
+.DEFAULT: all
+
+.PHONY: all clean help
+
+all: $(TARGET)
+
+.c.o:
+ $(CC) $(CC_FLAGS) -c $< -o $@
+
+TARGET:
+ $(CC) $^ $(LD_FLAGS) -o $@
+
+clean:
+ rm -f *.o *~ $(TARGET)
+
+help:
+ @echo 'all build the target. all is the deafult.'
+ @echo 'clean runs clean.'
+ @echo 'help runs help.'
+