diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b774d65 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +TOPTARGETS := all clean + +SUBDIRS := server + +$(TOPTARGETS): $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(TOPTARGETS) $(SUBDIRS)