top_srcdir = ..
CC = gcc
CFLAGS = -g -Wall -I$(top_srcdir)/include
LDFLAGS = -L$(top_srcdir)/src/.libs -lconf4c
tests = testconffile testconfreader testconfsection testconfstor testconfvalue

all: $(tests)

distclean: clean

clean: 
	rm -f *.o
	rm -f $(tests)
