Staging
v0.5.1
https://github.com/python/cpython
Revision 0acb7f7a57b6bf74cf46bffecf3a54e6c3216444 authored by Jack Jansen on 31 May 1996, 13:02:21 UTC, committed by Jack Jansen on 31 May 1996, 13:02:21 UTC
1 parent 31dd5c0
Raw File
Tip revision: 0acb7f7a57b6bf74cf46bffecf3a54e6c3216444 authored by Jack Jansen on 31 May 1996, 13:02:21 UTC
Module to handle PYC resources
Tip revision: 0acb7f7
Makefile
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
back to top