mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-13 00:00:47 +01:00
16 lines
394 B
Makefile
16 lines
394 B
Makefile
# type make and this makefile will generate the html documentation
|
|
|
|
all:
|
|
./jsdoc.pl -d html --project-name "<a href="http://freej.dyne.org">FreeJ</a> scripting" --logo "../ipernav-small.png" --page-footer "`cat footer.html`" \
|
|
FreejScripting.js \
|
|
Layer.js \
|
|
GeometryLayer.js \
|
|
Controller.js \
|
|
VideoEncoder.js \
|
|
AudioCollector.js \
|
|
GoomLayer.js \
|
|
cp -a images html
|
|
|
|
clean:
|
|
rm -rf html
|