mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
12 lines
297 B
Plaintext
12 lines
297 B
Plaintext
|
#! /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
|