From 33187b2f50b0f6267584485798280163a58ce2c0 Mon Sep 17 00:00:00 2001 From: patrikj Date: Mon, 6 May 2002 08:25:03 +0000 Subject: [PATCH] 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 --- docs/manual/style/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/manual/style/Makefile 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 -- 2.40.0