# Makefile for stylesheet tutorial examples

# This makefile requires GNU make

JACKSVG=perl -I ../../lib ../../script/pres2svg

%.svg: %.xml
	${JACKSVG} --stylesheet $< --Force --output $@ pres1.xml

TARGETS=\
 step02.svg step03.svg step04.svg step05.svg step06.svg \
 step07.svg step08.svg step09.svg step10.svg step11.svg \
 step12.svg step13.svg step14.svg step15.svg step16.svg \
 step17.svg step18.svg step19.svg step20.svg step21.svg

all:	${TARGETS}

clean:
	rm -f ${TARGETS}

#EOF
