.PHONY = all clean all: @(cd client; make) @(cd server; make) clean: @(cd client; make clean) @(cd server; make clean)