Commit 752cd340 authored by Fred Drake's avatar Fred Drake

Integrate stupid_clean directly into the Makefile.

Remove the stupid_clean script.
parent 37a671f3
......@@ -9,4 +9,5 @@ test:
$(PYTHON) utilities/testrunner.py $(TESTOPTS)
clean:
./stupid_clean
find . -name '*.o' -o -name '*.so' -o -name '*.py[co]' \
-o -name 'core*' | xargs rm -f
#! /bin/sh
# "python setup.py clean" doesn't work with a --inplace build, so use
# this instead (copied from the Zope3 tree).
# XXX Note! this won't work for filenames that have spaces in them!
# Unfortunately find -print0 and xargs -0 don't exist on
# some platforms (Solaris for instance) so we can't use them...
find . -name '*.o' -o -name '*.so' -o -name '*.py[co]' \
-o -name 'core*' | xargs rm -f
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment