# $Id: Makefile 21 2006-09-01 14:47:09Z unicinfo $ # Copyright (c) 2006 Kurt M. Brown. # This file is subject to the terms and conditions of the GNU General Public # License. See the file COPYING for more details. %.html: %.kpc template.xsl xsltproc template.xsl $< > $@ pages := $(addsuffix .html, $(basename $(wildcard *.kpc))) pages += $(addsuffix .html, $(basename $(wildcard */*.kpc))) pages += $(addsuffix .html, $(basename $(wildcard */*/*.kpc))) all: $(pages) clean: /bin/rm $(pages)