From e9302029bc26a2f2d8403c80ced6420a7acfe4c7 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 18 Jun 2014 11:30:44 +0200 Subject: [PATCH] Add top-level Makefile --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a3fb177 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +SUBDIRS = src doc +.PHONY: $(SUBDIRS) all + +all: $(SUBDIRS) + +$(SUBDIRS): + $(MAKE) -C $@ + +clean install: + for d in $(SUBDIRS); do \ + $(MAKE) -C $$d $@; \ + done -- 1.7.10.4