aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-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 $@