~ salmonella-environment-setup (master) /Makefile
Trap1REPORTDIR ?= /var/www/spiffy/tests
2WIKI2HTML ?= /usr/local/chickens/chicken-qwiki/bin/svnwiki2html
3
4all: index.html
5
6index.html: index.wiki
7 $(WIKI2HTML) --title "CHICKEN automated tests" \
8 --css //wiki.call-cc.org/chicken.css \
9 index.wiki > index.html
10
11install:
12 cp index.html $(REPORTDIR)/
13
14clean:
15 rm *~ index.html
16
17.PHONY: all install clean