all: example

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

clean:
	rm -f *.o
	rm example
