Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv30761
Added Files:
Tag: Zope-3x-branch
stupid_clean
Log Message:
Stupid clean script to remove all .o and .so, since "stupid_build.py
clean" isn't quite enough.
=== Added File Zope3/stupid_clean ===
#! /bin/sh
files=`find -name \*.o -o -name \*.so`
if [ ! -z $files ] ; then
rm $files
fi