link test against sqlite

This commit is contained in:
Sebastian Ramacher 2012-01-31 01:29:41 +01:00
parent 3f05c12c0a
commit dba33a04a1

View File

@ -12,6 +12,8 @@ ZSOURCE = $(shell find ../ -iname "*.c" -a ! -iname "database-*" ! -iname "mai
ZOBJECTS = ${ZSOURCE:.c=.o}
ifeq (${DATABASE}, sqlite)
INCS += $(SQLITE_INC)
LIBS += $(SQLITE_LIB)
ZSOURCE += ../database-sqlite.c
else
ifeq (${DATABASE}, plain)