CC=gcc -g -I../../include
DBLIB=../../db.a

.c.o:
	$(CC) -c $<

default: test1.exe test2.exe

test1.exe: test1.o $(DBLIB)
	$(CC) test1.o $(DBLIB)

test2.exe: test2.o $(DBLIB)
	$(CC) test2.o $(DBLIB)
