Staging
v0.5.1
https://github.com/python/cpython
Revision f5013f1f0c1eec01b8007f16d91f4a53da866553 authored by Fred Drake on 13 April 1998, 21:02:49 UTC, committed by Fred Drake on 13 April 1998, 21:02:49 UTC
1 parent 974f295
Raw File
Tip revision: f5013f1f0c1eec01b8007f16d91f4a53da866553 authored by Fred Drake on 13 April 1998, 21:02:49 UTC
Add RELEASE make variable; this gets the entire release # ("1.5.1").
Tip revision: f5013f1
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