aboutsummaryrefslogtreecommitdiffstats
path: root/test/bruisertest
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-06-25 21:19:30 +0000
committerbloodstalker <thabogre@gmail.com>2017-06-25 21:19:30 +0000
commitaa41e40dcfbbb9d19245cb92e5915d5508ba2c24 (patch)
tree2c76d9ece94b3d114bc173cd07e2d446cd27683f /test/bruisertest
parentupdated (diff)
downloadmutator-aa41e40dcfbbb9d19245cb92e5915d5508ba2c24.tar.gz
mutator-aa41e40dcfbbb9d19245cb92e5915d5508ba2c24.zip
updated
Diffstat (limited to 'test/bruisertest')
-rw-r--r--test/bruisertest/makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/bruisertest/makefile b/test/bruisertest/makefile
index 2f5e334..c8b1c3e 100644
--- a/test/bruisertest/makefile
+++ b/test/bruisertest/makefile
@@ -1,11 +1,12 @@
BRUISER_TEST=test
+CXX?=clang++
.DEFAULT:all clean
all:$(BRUISER_TEST)
.cpp.o:
- $(CXX) $(CXX_FLAGS) -c $< -o $@
+ $(CXX) $(CXX_FLAGS) -c $< -o $@ -I/usr/include
$(BRUISER_TEST): test.cpp
$(CXX) $^ $(LD_FLAGS) -o $@