diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2023-05-21 15:56:05 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2023-05-21 15:56:05 +0200 |
commit | afeaea5cbae0c6075bfd6366d7c91399ecd2deb0 (patch) | |
tree | 906ee3795a15127f26ccd343dcd27a8784d78251 /doc/makefile | |
parent | d777e0c20af8484d130a05e9c18a9ff8b50d9e66 (diff) | |
parent | ba4cc491d546767fbb344d279d216cfb5ea0cc1f (diff) |
Merge branch 'master' of https://github.com/heavydemon21/avans-dui
Diffstat (limited to 'doc/makefile')
-rw-r--r-- | doc/makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/makefile b/doc/makefile index 9f4dfa0..a960c63 100644 --- a/doc/makefile +++ b/doc/makefile @@ -1,10 +1,8 @@ .PHONY: all clean -TARGET := $(patsubst %.md,%.pdf, $(wildcard *.md)) +all: dui.pdf -all: $(TARGET) - -garbage = $1.aux $1.bbl $1.bcf $1.blg $1.fdb_latexmk $1.fls $1.log $1.out $1.run.xml $1.synctex.gz $1.toc $1.md.tex +dui.pdf: ../assets/architecture-level-0.pdf %.pdf: %.svg rsvg-convert -f pdf -o $@ $< @@ -16,5 +14,5 @@ garbage = $1.aux $1.bbl $1.bcf $1.blg $1.fdb_latexmk $1.fls $1.log $1.out $1.run pandoc -t latex -o $@ $< clean: - $(RM) $(call garbage,research) research.pdf + $(RM) dui.aux dui.bbl dui.bcf dui.blg dui.fdb_latexmk dui.fls dui.log dui.out dui.run.xml dui.synctex.gz dui.toc dui.md.tex dui.pdf |