diff options
author | Nao Pross <naopross@thearcway.org> | 2017-01-02 14:11:27 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-01-02 14:11:27 +0100 |
commit | f53274cd88ea7226e39b99f4cf9889bd8b841382 (patch) | |
tree | 03ae3be46c9fab19dc2f2ada1a14e8c206c0c5ba | |
parent | merge branch 'master' of ssh://git.thearcway.org:2222/naopross/pdi (diff) | |
download | PDI-f53274cd88ea7226e39b99f4cf9889bd8b841382.tar.gz PDI-f53274cd88ea7226e39b99f4cf9889bd8b841382.zip |
fixed makefile
-rw-r--r-- | doc/makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/makefile b/doc/makefile index 6baefea..207672a 100644 --- a/doc/makefile +++ b/doc/makefile @@ -14,7 +14,7 @@ TEX := lualatex BIB := biber # recipes -.PHONY: all build clean +.PHONY: all build dir clean all: build build: $(PDFS) @@ -27,5 +27,8 @@ build: $(PDFS) $(PDFS): res/%.pdf: res/%.svg $(SVGS) inkscape -z -D --file=$< --export-pdf=$@ +dir: + mkdir -p $(BUILD_DIR) + clean: rm $(BUILD_DIR)/* |