Staging
v0.5.1
https://github.com/python/cpython
Revision 989b7b91a1d01f90dec9f9e88b97cd794f2f0f3f authored by Tim Peters on 16 October 2000, 20:24:53 UTC, committed by Tim Peters on 16 October 2000, 20:24:53 UTC
1 parent d6e2023
Raw File
Tip revision: 989b7b91a1d01f90dec9f9e88b97cd794f2f0f3f authored by Tim Peters on 16 October 2000, 20:24:53 UTC
Filled in math-module info; fixed a typo or two.
Tip revision: 989b7b9
Makefile
all:
		@echo Nothing to make in this directory.

clean:
		find . '(' -name '*.py[co]' -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