Staging
v0.5.1
https://github.com/python/cpython
Revision c322667a00baac2c38c18b9a4b2c7dd250771dc7 authored by Moshe Zadka on 30 March 2001, 20:06:55 UTC, committed by Moshe Zadka on 30 March 2001, 20:06:55 UTC
Someone with BSDs, please test this!
1 parent 93fe3d7
Raw File
Tip revision: c322667a00baac2c38c18b9a4b2c7dd250771dc7 authored by Moshe Zadka on 30 March 2001, 20:06:55 UTC
- Add TELL64() hack #ifdef to FreeBSD, Apple and BSDI
Tip revision: c322667
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