From: Adam Dickmeiss Date: Wed, 18 Jun 2014 09:30:44 +0000 (+0200) Subject: Add top-level Makefile X-Git-Tag: v0.2~4 X-Git-Url: http://git.indexdata.com/?p=mp-xquery-moved-to-github.git;a=commitdiff_plain;h=e9302029bc26a2f2d8403c80ced6420a7acfe4c7 Add top-level 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