From 2b247bc848555062572275a1ec9cb0a21595e5d4 Mon Sep 17 00:00:00 2001 From: rekado Date: Sun, 15 Nov 2015 22:22:55 +0100 Subject: Fun with makefiles. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.2.3