.SUFFIXES:
.SUFFIXES: .xsl .txt

OUTS = helo2.txt heloworld.txt

all: $(OUTS)

clean:
	rm -f $(OUTS)

.xsl.txt:
	xsltproc $< $< > $@

tar:
	cd .. && tar uvf xslexamples.tar 00helo/{h*.xsl,Makefile}
