diff options
author | Ulrich Müller <ulm@gentoo.org> | 2015-06-01 17:36:35 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2015-06-01 17:36:35 +0200 |
commit | d69dfccc03f157cf397ad66ec0db665e1df35473 (patch) | |
tree | bfa803158d12a40975ed086b80abc268b10ed109 /Makefile | |
parent | use html output to avoid invalid self closing elements (diff) | |
download | devmanual-d69dfccc03f157cf397ad66ec0db665e1df35473.tar.gz devmanual-d69dfccc03f157cf397ad66ec0db665e1df35473.tar.bz2 devmanual-d69dfccc03f157cf397ad66ec0db665e1df35473.zip |
Makefile: Add missing dependency on XSL stylesheet.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |