Community
Participate
Working Groups
mv src/* .
# Remove files from the version control system
find -depth -name CVS -exec rm -rf {} \;
find -depth \( -name CVS -o -name .cvsignore \) -exec rm -rf {} \;
# Remove prebuilt binaries
find \( -name '*.exe' -o -name '*.dll' \) -delete