# This is an example Makefile which automates the updating of STT
# pages from their templates.  To adopt it to your own project, put it
# in the directory with your template(s), and edit the PAGES and
# TEMPLATES settings as indicated below.  Then, whenever you make a
# change to a template, type "make" in the directory containing this
# Makefile.

# This Makefile was written to work with GNU Make; it may need
# adjustig to work with other versions of Make.

# Set PAGES to the (space-separated) list of all your template-driven
# HTML pages:
PAGES = index.html ordering.html contact.html

# Set TEMPLATES to the (space-separated) list of all your
# templates:
TEMPLATES  = wizards.dwt

all:	${PAGES}

${PAGES}:
	stt $@

Makefile.deps: ${PAGES} ${TEMPLATES}
	stt -M ${PAGES} > Makefile.deps

include Makefile.deps
