OUTPUTPREFIX=../html/development
OUTPUTFILES = \
$(OUTPUTPREFIX)/default.css \
$(OUTPUTPREFIX)/welcome.html \
$(OUTPUTPREFIX)/betatest.html
all : $(OUTPUTFILES)
clean :
rm -vf $(OUTPUTFILES)
$(OUTPUTPREFIX)/default.css : default.css
cp -v $< $@
$(OUTPUTPREFIX)/%.html :: %.xml default.xsl
xalan -IN $< -OUT $@ -XSL default.xsl
tidy -indent -quiet -modify $@
.PHONY: all clean
# EOF #