.SUFFIXES: .txt .html

.txt.html:
	perl ./txt2html < $< > $@

OBJS=	AnimationKiller.html CookieMonster.html Decaf.html DocumentInfo.html \
	ForwardedFor.html Glossary.html HostnameExpander.html \
	Logger.html NoThanks.html Painter.html Preview.html \
	Referer.html SecretAgent.html SecretServer.html Secretary.html \
	Snoop.html Stats.html

all: $(OBJS) index

index:
	rm -f index.html
	perl ./doindex > index.html

clean:
	rm -f $(OBJS)
