OrionDesktop
Barry Initial commit 535aa62 (2 years, 10 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;)