Skip to content
Snippets Groups Projects
Commit 7fe31d87 authored by nimrod's avatar nimrod
Browse files

Have outputs depend on the Makefile as well.

parent 85741e57
No related branches found
No related tags found
No related merge requests found
......@@ -14,16 +14,16 @@ PAPERSIZE = A4
all: resume.html resume.pdf resume.docx resume.odt
resume.html: $(RESUME)
resume.html: $(RESUME) Makefile
pandoc -s -t html5 --email-obfuscation=none $(RESUME) -o resume.html
resume.pdf: $(RESUME)
resume.pdf: $(RESUME) Makefile
pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.pdf
resume.docx: $(RESUME)
resume.docx: $(RESUME) Makefile
pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.docx
resume.odt: $(RESUME)
resume.odt: $(RESUME) Makefile
pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.odt
clean:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment