Develop and Download Open Source Software

Browse CVS Repository

Contents of /samurai-graph/samurai-graph/build.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.6 - (show annotations) (download) (as text)
Sat Dec 4 21:37:09 2004 UTC (19 years, 4 months ago) by orrisroot
Branch: MAIN
CVS Tags: RELEASE_0_3_0, RELEASE_0_3_1, RELEASE_0_3_2, RELEASE_0_9_0, RELEASE_0_9_1, RELEASE_0_8_0, RELEASE_0_5_2, RELEASE_0_5_0, RELEASE_0_5_1, RELEASE_0_7_0, RELEASE_0_7_1, RELEASE_0_6_1, RELEASE_0_6_0, RELEASE_1_0_0, RELEASE_0_4_1, RELEASE_0_4_0
Changes since 1.5: +2 -0 lines
File MIME type: text/x-sh
added .DS_Store removing command.

1 #!/bin/sh
2 PWD=`dirname $0`
3 cd $PWD
4
5 case "$1" in
6 build)
7 (cd contrib ; ./build.sh build)
8 tools/ant.sh
9 ;;
10 rebuild)
11 rm -f `find . -name .DS_Store`
12 (cd contrib ; ./build.sh rebuild)
13 tools/ant.sh
14 ;;
15 clean)
16 rm -f `find . -name .DS_Store`
17 (cd contrib ; ./build.sh clean)
18 tools/ant.sh clean
19 ;;
20 *)
21 echo "Usage: ${0##*/}: { build | rebuild | clean }" 2>&1
22 exit 65
23 ;;
24 esac

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26