]> granicus.if.org Git - apache/commitdiff
Simple Makefile for those who prefer make over ant.
authorpatrikj <patrikj@unknown>
Mon, 6 May 2002 08:25:03 +0000 (08:25 +0000)
committerpatrikj <patrikj@unknown>
Mon, 6 May 2002 08:25:03 +0000 (08:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94948 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/style/Makefile [new file with mode: 0644]

diff --git a/docs/manual/style/Makefile b/docs/manual/style/Makefile
new file mode 100644 (file)
index 0000000..a727048
--- /dev/null
@@ -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