From: Daniel Karbach Date: Mon, 12 Nov 2012 20:44:55 +0000 (+0100) Subject: fixed flags in makefiles X-Git-Url: http://git.localhorst.tv/?a=commitdiff_plain;h=95bbd3d0b18007bf8614b1bf16042949b12fc641;hp=-c;p=l2e.git fixed flags in makefiles --- 95bbd3d0b18007bf8614b1bf16042949b12fc641 diff --git a/build/debug/Makefile b/build/debug/Makefile index f500214..d248635 100644 --- a/build/debug/Makefile +++ b/build/debug/Makefile @@ -2,6 +2,6 @@ include ../targets.mk include ../config.mk include ../l2e.mk -CXXFlags += -O0 -g3 +CXXFLAGS += -O0 -g3 -include local.mk diff --git a/build/release/Makefile b/build/release/Makefile index 0d8faf9..3ee96a8 100644 --- a/build/release/Makefile +++ b/build/release/Makefile @@ -3,6 +3,6 @@ include ../config.mk include ../l2e.mk CPPFLAGS += -DNDEBUG -CXXFlags += -O3 +CXXFLAGS += -O3 -include local.mk