From: Harvie Date: Mon, 24 May 2010 22:28:59 +0000 (+0200) Subject: Added cool makefile to do repo maintenance in future... X-Git-Url: https://git.harvie.cz/?a=commitdiff_plain;h=ccf1714e019b8c4df5bb860c8ab663dcc08490fe;p=mirrors%2FPrograms.git Added cool makefile to do repo maintenance in future... --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..76c8e4e --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: help clean + +help: + #use: make [help|clean] + +clean: + find | grep '~$$' | while read i; do rm -v "$$i"; done;