aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-11-05 22:08:28 +0000
committerbloodstalker <thabogre@gmail.com>2017-11-05 22:08:28 +0000
commit7db3cb7015348e14d8cd2bf0f69fcde213044f8f (patch)
treec503efc45bfb8c29bff20bf31ccf000fc057a05d /bruiser/makefile
parentfix (diff)
downloadmutator-7db3cb7015348e14d8cd2bf0f69fcde213044f8f.tar.gz
mutator-7db3cb7015348e14d8cd2bf0f69fcde213044f8f.zip
fix
Diffstat (limited to 'bruiser/makefile')
-rw-r--r--bruiser/makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/bruiser/makefile b/bruiser/makefile
index d9d8871..a464371 100644
--- a/bruiser/makefile
+++ b/bruiser/makefile
@@ -3,7 +3,8 @@
include ../macros.mk
#######################################VARS####################################
-CXX_FLAGS+=$(shell python3-config --includes) -I/usr/include
+override CXX_FLAGS+:=-I/usr/include
+override CXX_FLAGS+:=$(shell python3-config --includes)
BRUISER=bruiser
LUA?=JIT
LIB_LUA=./lua-5.3.4/src/liblua.a
@@ -29,7 +30,9 @@ depend: .bruiser.d
-include ./.bruiser.d
.cpp.o: depend
- $(CXX) $(CXX_FLAGS) -c $< -o $@
+ @echo 'fuck right off'
+ echo 'fuck right off'
+ $(CXX) $(CXX_FLAGS) -I/usr/include/python3.5m -c $< -o $@
linenoise.o:
$(CC) $(CC_FLAGS) linenoise/linenoise.c -c -o linenoise.o