e2fac79ffb
* NEW: Replace the old "INCLUDES" directive by "xxx_CPPFLAGS" in all Makefile.am files. [GB.XML] * BUG: Remove debugging flags from compilation flags. git-svn-id: svn://localhost/gambas/trunk@4714 867c0c6c-44f3-4631-809d-bfa615b0a4ec
13 lines
462 B
Makefile
Executable file
13 lines
462 B
Makefile
Executable file
COMPONENT = gb.db.sqlite2
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.db.sqlite2.la
|
|
|
|
gb_db_sqlite2_la_LIBADD = @SQLITE2_LIB@
|
|
gb_db_sqlite2_la_LDFLAGS = -module @LD_FLAGS@ @SQLITE2_LDFLAGS@
|
|
gb_db_sqlite2_la_CXXFLAGS = $(AM_CXXFLAGS) -fexceptions
|
|
gb_db_sqlite2_la_CPPFLAGS = @SQLITE2_INC@
|
|
|
|
gb_db_sqlite2_la_SOURCES = \
|
|
main.h main.cpp dataset.h dataset.cpp qry_dat.cpp qry_dat.h sqlitedataset.h \
|
|
sqlitedataset.cpp stringhelper.h stringhelper.cpp
|