BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionUserland / commit / 19aefaad8af9de8719ba1e5b5340e0a1b9c68853 / Makefile

// Related

OrionUserland

Barry Importing existing Orion Userland 19aefaa (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;)