1
2
3
4
5
6
7
8
|
SOURCES := test-main.cc
TARGET := test-main
LIBRARIES := sqlite3cc$(if $(DEBUGMODE),_d,) \
boost_filesystem-mt$(if $(DEBUGMODE),-d,) \
boost_thread-mt$(if $(DEBUGMODE),-d,)
CPPFLAGS := -I../include
LDPOSTFLAGS := -L../src -Wl,-rpath=../src
include ~/src/edam.mk
|