Browse CVS Repository
Contents of /samurai-graph/samurai-graph/build.sh
Parent Directory
| Revision Log
| Revision Graph
Revision 1.5 -
( show annotations)
( download)
( as text)
Mon Sep 13 00:02:55 2004 UTC
(19 years, 7 months ago)
by orrisroot
Branch: MAIN
CVS Tags: RELEASE_0_2_0, RELEASE_0_1_2, RELEASE_0_1_3, RELEASE_0_1_4
Changes since 1.4: +7 -157 lines
File MIME type: text/x-sh
fixed broken build script
| 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 |
(cd contrib ; ./build.sh rebuild) |
| 12 |
tools/ant.sh |
| 13 |
;; |
| 14 |
clean) |
| 15 |
(cd contrib ; ./build.sh clean) |
| 16 |
tools/ant.sh clean |
| 17 |
;; |
| 18 |
*) |
| 19 |
echo "Usage: ${0##*/}: { build | rebuild | clean }" 2>&1 |
| 20 |
exit 65 |
| 21 |
;; |
| 22 |
esac |
|