comparison GNUmakefile @ 75:2bf4cd2787c5

Added DTDs to make xmllint happy. Note that these DTDs don't try to be actually correct: possible element contents require cleanup. This is enough to pass all documents through xmllint though.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 10 Oct 2011 14:47:09 +0000
parents 092d8068f845
children 3179774f938e
comparison
equal deleted inserted replaced
74:e9948ec6286b 75:2bf4cd2787c5
144 xslt/error.xslt 144 xslt/error.xslt
145 $(call XSLT, xslt/error.xslt, $<, $@) 145 $(call XSLT, xslt/error.xslt, $<, $@)
146 146
147 .SECONDARY: 147 .SECONDARY:
148 148
149 $(OUT)/%_module.html: xml/%_module.xml \ 149 $(OUT)/%.html: xml/%.xml \
150 $(ARTICLE_DEPS) 150 $(ARTICLE_DEPS)
151 $(call XMLLINT, $<) 151 $(call XMLLINT, $<)
152 $(call XSLT, xslt/article.xslt, $<, $@)
153
154 $(OUT)/%.html: xml/%.xml \
155 $(ARTICLE_DEPS)
156 $(call XSLT, xslt/article.xslt, $<, $@) 152 $(call XSLT, xslt/article.xslt, $<, $@)
157 153
158 154
159 xslt/%.xslt: xsls/%.xsls \ 155 xslt/%.xslt: xsls/%.xsls \
160 xsls/dump.xsls 156 xsls/dump.xsls