5b5bb093e7
* NEW: Rewrite the SQLite 3 driver. Get rid of all that brain-fucking C++ code. Things should consume less memory, and may be a little bit faster. git-svn-id: svn://localhost/gambas/trunk@7016 867c0c6c-44f3-4631-809d-bfa615b0a4ec
14 lines
378 B
Makefile
Executable file
14 lines
378 B
Makefile
Executable file
COMPONENT = gb.db.sqlite3
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.db.sqlite3.la
|
|
|
|
gb_db_sqlite3_la_LIBADD = @SQLITE3_LIB@
|
|
gb_db_sqlite3_la_LDFLAGS = -module @LD_FLAGS@ @SQLITE3_LDFLAGS@
|
|
gb_db_sqlite3_la_CFLAGS = $(AM_CFLAGS)
|
|
gb_db_sqlite3_la_CPPFLAGS = @SQLITE3_INC@
|
|
|
|
gb_db_sqlite3_la_SOURCES = \
|
|
main.h main.c \
|
|
helper.h helper.c \
|
|
gb_buffer.h gb_buffer.c
|