aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-11-07 01:21:23 +0000
committerbloodstalker <thabogre@gmail.com>2017-11-07 01:21:23 +0000
commite527bf545e12a39ec152e3d82be0d8217b860d13 (patch)
tree38330f1a82bd7d9616b737ef978cfc47c90702fd
parenttravis should be fixed now (diff)
downloadmutator-e527bf545e12a39ec152e3d82be0d8217b860d13.tar.gz
mutator-e527bf545e12a39ec152e3d82be0d8217b860d13.zip
fixed
-rw-r--r--bruiser/makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/bruiser/makefile b/bruiser/makefile
index 65a5ed7..3544416 100644
--- a/bruiser/makefile
+++ b/bruiser/makefile
@@ -3,8 +3,8 @@
include ../macros.mk
#######################################VARS####################################
-override CXX_FLAGS+:=-I/usr/include
-override CXX_FLAGS+::=$(shell python3-config --includes)
+CXX_FLAGS+=-I/usr/include
+CXX_FLAGS+=$(shell python3-config --includes)
BRUISER=bruiser
LUA?=JIT
LIB_LUA=./lua-5.3.4/src/liblua.a
@@ -30,7 +30,7 @@ depend: .bruiser.d
-include ./.bruiser.d
.cpp.o: depend
- $(CXX) $(CXX_FLAGS) -I/usr/include/python3.5m -c $< -o $@
+ $(CXX) $(CXX_FLAGS) -c $< -o $@
linenoise.o:
$(CC) $(CC_FLAGS) linenoise/linenoise.c -c -o linenoise.o