Staging
v0.8.1
https://github.com/python/cpython
Revision 9971f689cbce2c7ce3241aed4af0f8455836fbea authored by Guido van Rossum on 06 October 1997, 21:09:32 UTC, committed by Guido van Rossum on 06 October 1997, 21:09:32 UTC
Print the author with the revision date and filename.
1 parent dc1a072
Raw File
Tip revision: 9971f689cbce2c7ce3241aed4af0f8455836fbea authored by Guido van Rossum on 06 October 1997, 21:09:32 UTC
Fix comment to add the all-important trailing colon to the example.
Tip revision: 9971f68
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