.PHONY: all clean all: cd src; $(MAKE); cd test; $(MAKE); clean: cd src; $(MAKE) clean; cd test; $(MAKE) clean; rm -f bin/*; rm -f lib/*;