summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2015-11-15 22:22:55 +0100
committerrekado <rekado@elephly.net>2015-11-15 22:22:55 +0100
commit2b247bc848555062572275a1ec9cb0a21595e5d4 (patch)
tree927057bf6697a382b3b039fb1b0fecb612351fc2 /Makefile
parent5fa11e1cbad9996822bd26ed7113e0cfc32b88f6 (diff)
Fun with makefiles.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..8f97c64
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+SUBDIRS := $(wildcard */.)
+
+all : $(SUBDIRS)
+
+$(SUBDIRS) :
+ $(MAKE) -C $@
+
+.PHONY : all $(SUBDIRS)