all: compile 
compile:
	@(cd server; make all)
	@(cd client; make all)
	
clean:
	(cd server; make clean)
	(cd client; make clean)
