Browse Subversion Repository
Annotation of /nyar4psg/trunk/resources/code/doc.sh
Parent Directory
| Revision Log
Revision 1158 -
( hide annotations)
( download)
( as text)
Tue Jan 6 07:38:11 2015 UTC
(9 years, 3 months ago)
by nyatla
File MIME type: text/x-sh
File size: 442 byte(s)
パッケージ構成をProcessing2.0向けに更新
| 1 |
nyatla |
1158 |
# a shell script to create a java documentation |
| 2 |
|
|
# for a processing library. |
| 3 |
|
|
# |
| 4 |
|
|
# make changes to the variables below so they |
| 5 |
|
|
# fit the structure of your library |
| 6 |
|
|
|
| 7 |
|
|
# the package name of your library |
| 8 |
|
|
package=template; |
| 9 |
|
|
|
| 10 |
|
|
# source folder location |
| 11 |
|
|
src=../src; |
| 12 |
|
|
|
| 13 |
|
|
# the destination folder of your documentation |
| 14 |
|
|
dest=../documentation; |
| 15 |
|
|
|
| 16 |
|
|
|
| 17 |
|
|
# compile the java documentation |
| 18 |
|
|
javadoc -d $dest -stylesheetfile ./stylesheet.css -sourcepath ${src} ${package} |
|