about summary refs log tree commit diff
path: root/mk/clean.mk
blob: 703e32e2dd940180ab8d04d06bd50cb8bdfceb41 (plain) (blame)
1
2
3
4
5
6
7
clean_files :=

clean:
	$(QUIET) rm -fv -- $(clean_files)

dryclean:
	@for i in $(clean_files); do if [ -e $$i ]; then echo $$i; fi; done