Staging
v0.5.1
https://github.com/python/cpython
Revision 6e890b86a87b36b148d802b03e0ab55d471cfd74 authored by Guido van Rossum on 05 October 1994, 12:25:12 UTC, committed by Guido van Rossum on 05 October 1994, 12:25:12 UTC
1 parent a440310
Raw File
Tip revision: 6e890b86a87b36b148d802b03e0ab55d471cfd74 authored by Guido van Rossum on 05 October 1994, 12:25:12 UTC
Save static pointer to malloc'ed buffer
Tip revision: 6e890b8
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