Staging
v0.8.1
https://github.com/python/cpython
Revision d0ec7616ea8f50f8f5ecaa6768effab2df8ab107 authored by Guido van Rossum on 11 December 1997, 15:21:33 UTC, committed by Guido van Rossum on 11 December 1997, 15:21:33 UTC
1 parent 2dbabb2
Raw File
Tip revision: d0ec7616ea8f50f8f5ecaa6768effab2df8ab107 authored by Guido van Rossum on 11 December 1997, 15:21:33 UTC
Copy the change from ../getpathp.c here.
Tip revision: d0ec761
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