From: patrikj Date: Mon, 6 May 2002 08:25:03 +0000 (+0000) Subject: Simple Makefile for those who prefer make over ant. X-Git-Tag: 2.0.37~499 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33187b2f50b0f6267584485798280163a58ce2c0;p=apache Simple Makefile for those who prefer make over ant. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94948 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/style/Makefile b/docs/manual/style/Makefile new file mode 100644 index 0000000000..a727048538 --- /dev/null +++ b/docs/manual/style/Makefile @@ -0,0 +1,11 @@ +# Uses Xalan-C++ to build Apache html documentation. + +workdir := ../mod +xmlfiles := $(wildcard $(workdir)/*.xml) +xmlfiles := $(subst allmodules.xml,,$(xmlfiles)) +htmlfiles := $(subst xml,html,$(xmlfiles)) + +html: $(htmlfiles) + +%.html : %.xml + Xalan -v -o $@ $< ./manual.xsl