all: test

test: test.cc
	g++ -lsqlxx test.cc -o test

clean:
	rm -f *.o
	rm test
