1 2 3 4 5 6 7 8 9 10
.PHONY: all install test all: @@cd src && make all install: @@cd src && make install test: all @@cd test && make test