From e527bf545e12a39ec152e3d82be0d8217b860d13 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Tue, 7 Nov 2017 04:51:23 +0330 Subject: fixed --- bruiser/makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bruiser') 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 -- cgit v1.2.3