'./build.sh cleanall' and './build.sh distclean' work now.

(currently they do the same)


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@409 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2002-12-12 01:40:28 +00:00
parent c8371d9d2a
commit dc59eae2db
+4 -2
View File
@@ -132,14 +132,16 @@ build_clean() {
}
build_cleanall() {
export BUILD_PROJECT
for TARGET in $TARGETS; do
build_clean "$TARGET"
BUILD_PROJECT="$TARGET"
build_clean
done
BUILD_PROJECT=""
}
build_distclean() {
build_cleanall
rm configure
}