aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2015-06-01 17:36:35 +0200
committerUlrich Müller <ulm@gentoo.org>2015-06-01 17:36:35 +0200
commitd69dfccc03f157cf397ad66ec0db665e1df35473 (patch)
treebfa803158d12a40975ed086b80abc268b10ed109
parentuse html output to avoid invalid self closing elements (diff)
downloaddevmanual-d69dfccc03f157cf397ad66ec0db665e1df35473.tar.gz
devmanual-d69dfccc03f157cf397ad66ec0db665e1df35473.tar.bz2
devmanual-d69dfccc03f157cf397ad66ec0db665e1df35473.zip
Makefile: Add missing dependency on XSL stylesheet.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index dd2d1c4..f22f304 100644
--- a/Makefile
+++ b/Makefile
@@ -7,11 +7,11 @@ prereq:
@type -p convert &>/dev/null || { echo "media-gfx/imagemagick with corefonts, svg and truetype required" >&2; exit 1; }; \
type -p xsltproc &>/dev/null || { echo "dev-libs/libxslt is required" >&2; exit 1; }
-%index.html : %text.xml
+%index.html : %text.xml devbook.xsl
xsltproc devbook.xsl $< > $@
# Someone should figure out a way to put this to the pattern
-index.html : text.xml
+index.html : text.xml devbook.xsl
xsltproc devbook.xsl $< > $@
%.png : %.svg