all: compile
	g++ -Llibsrc/ -lZoo *.o -o test

compile:
	g++ -Ilibsrc/ -c *.cpp

clean:
	rm *.o test
