Skip to content

Commit eb71ec1

Browse files
committed
Fix dependencies of make targets
1 parent 30ada7c commit eb71ec1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ DOCFILES=docs/index.md docs/install.md docs/configuration.md docs/running.md doc
44

55
all : site docs.pdf
66

7-
site : mkdocs.yml docs/*
7+
site : mkdocs.yml $(DOCFILES)
88
mkdocs build
99

10-
docs.pdf : docs/*
10+
docs.pdf : template.tex $(DOCFILES)
1111
pandoc --from markdown+gfm_auto_identifiers+footnotes $(DOCFILES) --template template.tex --top-level-division=chapter --lua-filter=convert-links.lua -s -o docs.pdf
1212

1313
v : docs.pdf

0 commit comments

Comments
 (0)