- Makefiles can now be called from sub directories - Makefiles know includes and recompile if they are changed (linux, macosx) - Build all tests except SingletonDll with the static library (linux, macosx) git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@695 7ec92016-0320-0410-acc4-a06ded1c099a
11 lines
200 B
Text
11 lines
200 B
Text
include ../../Makefile.common
|
|
|
|
override CPPFLAGS += -I../../include -DNDEBUG
|
|
override LDFLAGS += -L../../lib -static
|
|
LDLIBS := -lloki
|
|
|
|
ifeq ($(OS),Windows)
|
|
BIN_SUFFIX := .exe
|
|
else
|
|
BIN_SUFFIX :=
|
|
endif
|