diff options
author | bloodstalker <thabogre@gmail.com> | 2017-02-28 14:56:19 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-02-28 14:56:19 +0000 |
commit | d228f7379d335129e6f2bc1fb63b1aeb0c76760f (patch) | |
tree | c6ba6c956444a9527f931511ff2837695a1d1655 /daemon/makefile | |
parent | just added a comment (diff) | |
download | mutator-d228f7379d335129e6f2bc1fb63b1aeb0c76760f.tar.gz mutator-d228f7379d335129e6f2bc1fb63b1aeb0c76760f.zip |
the daemon makefile
Diffstat (limited to 'daemon/makefile')
-rw-r--r-- | daemon/makefile | 27 |
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.' + |