BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionDesktop / commit / 535aa6298753c88a7d809227cf64962f7924543b / Makefile

// Related

OrionDesktop

Barry Initial commit 535aa62 (2 years, 4 months ago)
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..85d9ce7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+PROGS=$(shell basename -a $(shell find . -mindepth 1 -maxdepth 1 -type d -not -path '*/.*'))
+
+.PHONY: clean all install
+
+all:
+	@$(foreach prog,$(PROGS),$(MAKE) -s -C $(prog);)
+
+clean:
+	@$(foreach prog,$(PROGS),$(MAKE) -s -C $(prog) clean;)
+
+install:
+	@$(foreach prog,$(PROGS),$(MAKE) -s -C $(prog) install;)