aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/makefile
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-11-07 02:51:10 +0000
committerbloodstalker <thabogre@gmail.com>2017-11-07 02:51:10 +0000
commit2e96d67cf0f2596a0208bc8fc002a118742b30ec (patch)
tree283d0ced8401111ccdd82cbfc61bb287b2c8c3dc /bruiser/makefile
parentfix (diff)
downloadmutator-2e96d67cf0f2596a0208bc8fc002a118742b30ec.tar.gz
mutator-2e96d67cf0f2596a0208bc8fc002a118742b30ec.zip
fix
Diffstat (limited to 'bruiser/makefile')
-rw-r--r--bruiser/makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/bruiser/makefile b/bruiser/makefile
index 3544416..680d314 100644
--- a/bruiser/makefile
+++ b/bruiser/makefile
@@ -4,7 +4,7 @@ include ../macros.mk
#######################################VARS####################################
CXX_FLAGS+=-I/usr/include
-CXX_FLAGS+=$(shell python3-config --includes)
+CXX_FLAGS+=$(shell $(PY_CONF) --includes)
BRUISER=bruiser
LUA?=JIT
LIB_LUA=./lua-5.3.4/src/liblua.a
@@ -13,7 +13,7 @@ HEADER_LIST=bruiser.h bruiser-extra.h CompletionHints.h
SRCS=bruiser.cpp, CompletionHints.cpp, ORCmutation.cpp, mutagen.cpp
#for some reason without ld the build fails on ubuntu trusty on travis
#EXTRA_LD_FLAGS+=-lpthread -ldl -lutil -lm -Xlinker -lpython3
-EXTRA_LD_FLAGS+=$(shell python3-config --ldflags)
+EXTRA_LD_FLAGS+=$(shell $(PY_CONF) --ldflags)
######################################RULES####################################
.DEFAULT: all