Add configuration file support from glib. Add universal SQL database backend for event storage

This commit is contained in:
Wilco Baan Hofman 2012-07-29 17:15:23 +02:00
parent 9d49055b90
commit a1fd731e02
4 changed files with 205 additions and 14 deletions

View file

@ -3,9 +3,9 @@ CC := gcc
# Enable for debug
CFLAGS := -g -ggdb -std=c99 -Wall -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wdeclaration-after-statement -Werror-implicit-function-declaration -Wstrict-prototypes -Werror
INCLUDES := -I.
INCLUDES := -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
siahsd_LIB := -ltalloc
siahsd_LIB := -ltalloc -ldbi -lglib-2.0
siahsd_OBJ := sia.o siahsd.o
OBJ := $(siahsd_OBJ)