nix-gh/clean.mk

8 lines
145 B
Makefile
Raw Normal View History

clean_files :=
clean:
$(QUIET) rm -fv -- $(clean_files)
dryclean:
2013-12-16 16:51:05 +01:00
@for i in $(clean_files); do if [ -e $$i ]; then echo $$i; fi; done | sort