From c16145bedbe488e0c37be2af443e979232e35c25 Mon Sep 17 00:00:00 2001 From: Steffen Pohle Date: Sun, 28 Nov 2021 18:46:23 +0100 Subject: [PATCH] add Makefile in root tree. Needed for some IDEs --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile 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)