aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-04-11 18:19:22 +0000
committerbloodstalker <thabogre@gmail.com>2017-04-11 18:19:22 +0000
commit4d51494170805f753a31d215182c32a5fbdc7e3c (patch)
treefaa7c610caee898c486801f43e9cbf5ae8059f91 /bruiser/makefile
parentfixing the cov build (diff)
downloadmutator-4d51494170805f753a31d215182c32a5fbdc7e3c.tar.gz
mutator-4d51494170805f753a31d215182c32a5fbdc7e3c.zip
the new mutator experimetal mutator feature. bruiser tries to break your code.
Diffstat (limited to 'bruiser/makefile')
-rw-r--r--bruiser/makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/bruiser/makefile b/bruiser/makefile
new file mode 100644
index 0000000..561da73
--- /dev/null
+++ b/bruiser/makefile
@@ -0,0 +1,29 @@
+
+######################################INCLUDES#################################
+include ../macros.mk
+
+#######################################VARS####################################
+CXX_FLAGS+=
+BRUISER=bruiser
+
+######################################RULES####################################
+.DEFAULT: all
+
+.PHONY: all clean help $(BRUISER)
+
+all: $(BRUISER)
+
+.cpp.o:
+ $(CXX) $(CXX_FLAGS) -c $< -o $@
+
+$(BRUISER): $(BRUISER).o ../mutator_aux.o
+ $(CXX) $^ $(LD_FLAGS) -o $@
+
+clean:
+ rm -f *.o *~ $(BRUISER)
+
+help:
+ @echo 'There is help.'
+ @echo 'All is the defualt target.'
+ @echo 'Clean runs clean.'
+ @echo 'For a more complete and detaild list of BUILD_MODE and other things look at the main makefiles help under project root.'