.PHONY: all clean html

all: html
	@echo "Leaving html files in html format"

html:
	/bin/cp -f *.html *.gif ../output/html

clean:
	@echo "Nothing to do for clean"
