# A rather simple Makefile to help with cleaning out editor backup files. # For the linux_training material. # 8 October 2000 Nick Urbanik # Pattern(s) to match for old versions of files to be deleted by 'make clean' OLDVERSIONS = *~ *.fig.bak all: @# do nothing # delete all files which can easily be regenerated tidy: @# do nothing # delete all files which can be regenerated clean: tidy @# delete editor old-version files -rm -f $(OLDVERSIONS)