repo.or.cz
/
Bob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
replaced all StringBuffers with StringBuilder to improve performance
[Bob.git]
/
rungendocs.sh
blob
21f8944a0e565979278d65661e4c968945e8859d
1
#!/bin/bash
2
3
export
BOB_HOME
=/
Users
/
timothyw
/
projects
/
software
/
Bob
/
BOBJava
4
export
CP
=
"\
5
build/src:\
6
build/test:\
7
build/bob.jar"
8
9
export
PKGS
=
"\
10
com.interrupt \
11
com.interrupt.one \
12
com.interrupt.two \
13
com.interrupt.deux"
14
15
javadoc
-classpath
$CP
-d
gen
/
do
c
/
-sourcepath
src
/:
test
/:
gen
/
$PKGS
16
17