aboutsummaryrefslogtreecommitdiffstats
path: root/test/bruisertest/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-06-10 16:08:54 +0000
committerbloodstalker <thabogre@gmail.com>2017-06-10 16:08:54 +0000
commitd227ccd6146730694779ea43ebf5834c18f3da5b (patch)
tree261121810ef99df1d21a0d765f95383d5fd6f423 /test/bruisertest/makefile
parentnow builds luajit as well (diff)
downloadmutator-d227ccd6146730694779ea43ebf5834c18f3da5b.tar.gz
mutator-d227ccd6146730694779ea43ebf5834c18f3da5b.zip
tests for bruiser
Diffstat (limited to '')
-rw-r--r--test/bruisertest/makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/bruisertest/makefile b/test/bruisertest/makefile
new file mode 100644
index 0000000..cb237e4
--- /dev/null
+++ b/test/bruisertest/makefile
@@ -0,0 +1,21 @@
+include ../../macros.mk
+
+BRUISER_TEST=test
+
+.DEFAULT:all clean
+
+all:$(BRUISER_TEST)
+
+.cpp.o:
+ $(CXX) $(CXX_FLAGS) -c $< -o $@
+
+$(BRUISER_TEST): test.cpp
+ $(CXX) $^ $(LD_FLAGS) -o $@
+
+clean:
+ rm -f *.o *~ $(BRUISER_TEST)
+
+help:
+ @echo "the makfile for the bruiser test file."
+ @echo "there is the taget itself, all and clean."
+