.PHONY: all
all:
	@echo targets: clean distclean

.PHONY: clean
clean:
	rm -f *~

.PHONY: distclean
distclean: clean
	rm -f *.gif *.html pasdoc.css
	rm -f `for f in *; do if [ -x $f ]; then echo $f ; fi; done`
