.PHONY: clean all help

all:
	true

clean:
	find . -name \*~ -delete

help:
	@echo make clean
