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