diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-26 15:31:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-26 15:31:44 +0100 |
commit | 75d03f1fbd94efb5f8756e405de03cf271435336 (patch) | |
tree | 8b9c29410fafdd55c67fc54acb21522a0e957bb8 /doc | |
parent | 40a70f1657dc9107666b78b58e97e8615ea7f3ff (diff) | |
parent | 472482013e760b0c0334d99b7bf21d9bd2a3a206 (diff) |
Merge pull request #46446 from Faless/js/4.x_jsdoc
[HTML5] Document Engine and EngineConfig (jsdoc).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile index 9534da9bd5..d4bc53bcf9 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -2,6 +2,7 @@ BASEDIR = $(CURDIR) CLASSES = $(BASEDIR)/classes/ $(BASEDIR)/../modules/ OUTPUTDIR = $(BASEDIR)/_build TOOLSDIR = $(BASEDIR)/tools +JSDIR = $(BASEDIR)/../platform/javascript .ONESHELL: @@ -16,6 +17,10 @@ doxygen: rst: rm -rf $(OUTPUTDIR)/rst mkdir -p $(OUTPUTDIR)/rst - pushd $(OUTPUTDIR)/rst - python3 $(TOOLSDIR)/makerst.py $(CLASSES) - popd + python3 $(TOOLSDIR)/makerst.py -o $(OUTPUTDIR)/rst $(CLASSES) + +rstjs: + rm -rf $(OUTPUTDIR)/rstjs + mkdir -p $(OUTPUTDIR)/rstjs + npm --prefix $(JSDIR) ci + npm --prefix $(JSDIR) run docs -- --destination $(OUTPUTDIR)/rstjs/html5_shell_classref.rst |