xml2rfc = "../../xml2rfc/xml2rfc.tcl" saxpath = "$(HOME)/java/saxon-8-9-j/saxon8.jar" saxon = java -classpath $(saxpath) net.sf.saxon.Transform -novw stylesheet = ../myxml2rfc.xslt reduction = ../../rfc2629xslt/clean-for-DTD.xslt TARGETS = draft-ietf-httpbis-security-properties-04.html \ draft-ietf-httpbis-security-properties-04.redxml \ draft-ietf-httpbis-security-properties-04.txt all: $(TARGETS) clean: rm -f $(TARGETS) %.html: %.xml $(stylesheet) $(saxon) $< $(stylesheet) > $@ %.redxml: %.xml $(reduction) $(saxon) $< $(reduction) > $@ %.txt: %.redxml $(xml2rfc) $< $@