5 lines
152 B
Bash
Executable file
5 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
APPDIR=`dirname $0`;
|
|
GWTDIR=`$APPDIR/gwt_dir`;
|
|
javadoc -classpath "$APPDIR/src:$GWTDIR/gwt-user.jar" -d doc -public \
|
|
-subpackages autotest
|