Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 20466 invoked by uid 500); 6 May 2002 08:25:05 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 20455 invoked by uid 500); 6 May 2002 08:25:05 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 6 May 2002 08:25:04 -0000 Message-ID: <20020506082504.17101.qmail@icarus.apache.org> From: patrikj@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/manual/style Makefile X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N patrikj 02/05/06 01:25:03 Added: docs/manual/style Makefile Log: Simple Makefile for those who prefer make over ant. Revision Changes Path 1.1 httpd-2.0/docs/manual/style/Makefile Index: Makefile =================================================================== # 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