GLIB_ROOT:=/home2bak/dana/local-glib-persistent
CFLAGS:=-I$(GLIB_ROOT)/include/glib-2.0 -W -Wall
LDFLAGS:=-L$(GLIB_ROOT)/lib -lglib-2.0

all: test-single test-few test-many

test-single: test-single.c
	gcc -o $@ $^ $(CFLAGS) $(LDFLAGS)

test-few: test-few.c
	gcc -o $@ $^ $(CFLAGS) $(LDFLAGS)

test-many: test-many.c
	gcc -o $@ $^ $(CFLAGS) $(LDFLAGS)
