diff options
author | bloodstalker <thabogre@gmail.com> | 2017-11-07 01:21:23 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-11-07 01:21:23 +0000 |
commit | e527bf545e12a39ec152e3d82be0d8217b860d13 (patch) | |
tree | 38330f1a82bd7d9616b737ef978cfc47c90702fd /bruiser/makefile | |
parent | travis should be fixed now (diff) | |
download | mutator-e527bf545e12a39ec152e3d82be0d8217b860d13.tar.gz mutator-e527bf545e12a39ec152e3d82be0d8217b860d13.zip |
fixed
Diffstat (limited to 'bruiser/makefile')
-rw-r--r-- | bruiser/makefile | 6 |
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 |