1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/clean.mk
Eelco Dolstra 55c9a40613 Move stuff to top-level
This makes it easier to use with "git subtree".
2014-01-09 16:12:02 +01:00

8 lines
145 B
Makefile

clean_files :=
clean:
$(QUIET) rm -fv -- $(clean_files)
dryclean:
@for i in $(clean_files); do if [ -e $$i ]; then echo $$i; fi; done | sort