Staging
v0.5.1
https://github.com/python/cpython
Revision 3485bb6f44a5c07fb1387f3c3b9b02067252b990 authored by Guido van Rossum on 14 August 1997, 22:04:26 UTC, committed by Guido van Rossum on 14 August 1997, 22:04:26 UTC
1 parent 6f0cf7e
Raw File
Tip revision: 3485bb6f44a5c07fb1387f3c3b9b02067252b990 authored by Guido van Rossum on 14 August 1997, 22:04:26 UTC
Added logmerge.py
Tip revision: 3485bb6
Makefile
all:
		@echo Nothing to make in this directory.

clean:
		find . '(' -name '*.pyc' -o -name core -o -name '*~' \
			-o -name '[@,#]*' -o -name '*.old' \
			-o -name '*.orig' -o -name '*.rej' ')' \
			-print -exec rm -f {} ';'

clobber:	clean
back to top