diff options
author | Nao Pross <naopross@thearcway.org> | 2016-12-20 11:03:25 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2016-12-20 11:03:25 +0100 |
commit | 004ffbe26deb7635978d854180d4415e5b9e3999 (patch) | |
tree | 2ab345e5f8f33830ab02841ac3a725d878158c7f /docs/makefile | |
parent | rewritten introduction & smaller edits (diff) | |
download | PDI-004ffbe26deb7635978d854180d4415e5b9e3999.tar.gz PDI-004ffbe26deb7635978d854180d4415e5b9e3999.zip |
renamed 'docs' to 'doc'
Diffstat (limited to 'docs/makefile')
-rw-r--r-- | docs/makefile | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/docs/makefile b/docs/makefile deleted file mode 100644 index 8336791..0000000 --- a/docs/makefile +++ /dev/null @@ -1,30 +0,0 @@ -# documents -DOCUMENT := pdi -BIBLIOGRAPHY := pdi - -# folder structure settings -BUILD_DIR := build - -# resources -SVGS := $(wildcard res/images/*.svg) -PDFS := $(patsubst %.svg,%.pdf,$(SVGS)) - -# compiler settings -TEX := lualatex -BIB := biber - -# recipes -.PHONY: all build clean -all: build - -build: $(PDFS) - $(TEX) --output-directory=$(BUILD_DIR) $(DOCUMENT) - $(BIB) --output-directory=$(BUILD_DIR) $(BIBLIOGRAPHY) - $(TEX) --output-directory=$(BUILD_DIR) $(DOCUMENT) - $(TEX) --output-directory=$(BUILD_DIR) $(DOCUMENT) - -$(PDFS): res/%.pdf: res/%.svg $(SVGS) - inkscape -z -D --file=$< --export-pdf=$@ - -clean: - rm $(BUILD_DIR)/* |