You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pa...@apache.org on 2002/05/06 10:25:04 UTC

cvs commit: httpd-2.0/docs/manual/style Makefile

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