1#! /bin/sh 2 3if test -d 'CVS'; then 4 ${MAKE:-make} -f build/build.mk cvsclean-work 5elif test -d '.svn'; then 6 ${MAKE:-make} -f build/build.mk svnclean-work 7elif test -d '.git'; then 8 ${MAKE:-make} -f build/build.mk gitclean-work 9else 10 echo "Can't figure out your VCS, not cleaning." 11fi 12