commit | 80e32bf5464411cadd41290e1359c24084b30c67 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Jan 04 23:24:22 1994 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Jan 04 23:24:22 1994 +0000 |
tree | bd7802912f20a29477bfaa0572bcd08b1c1c8ec2 | |
parent | 7dd31d0608e6e8cf8f4aaa4b6b0530e349b57cd8 [diff] [blame] |
Added Makefile with clean and clobber targets
diff --git a/Lib/Makefile b/Lib/Makefile new file mode 100644 index 0000000..b70dc12 --- /dev/null +++ b/Lib/Makefile
@@ -0,0 +1,12 @@ +all: + @echo Nothing to make in this directory. + +clean: + find . '(' -name '*.pyc' -o -name '*.fdc' \ + -o -name core -o -name '*~' \ + -o -name '[@,#]*' -o -name '*.old' \ + -o -name '*.orig' -o -name '*.rej' \ + -o -name '*.bak' ')' \ + -print -exec rm -f {} ';' + +clobber: clean