mirror of
https://github.com/sojamo/controlp5
synced 2024-11-15 02:37:57 +01:00
19 lines
442 B
Bash
19 lines
442 B
Bash
|
# a shell script to create a java documentation
|
||
|
# for a processing library.
|
||
|
#
|
||
|
# make changes to the variables below so they
|
||
|
# fit the structure of your library
|
||
|
|
||
|
# the package name of your library
|
||
|
package=template;
|
||
|
|
||
|
# source folder location
|
||
|
src=../src;
|
||
|
|
||
|
# the destination folder of your documentation
|
||
|
dest=../documentation;
|
||
|
|
||
|
|
||
|
# compile the java documentation
|
||
|
javadoc -d $dest -stylesheetfile ./stylesheet.css -sourcepath ${src} ${package}
|