mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 22:23:07 +00:00
47e5a5fd74
Fixes a number of issues: - Headings underliners now have the correct length - Newline+Tabs in descriptions are replaced by two newlines to make a proper paragraph - [br] are replaced by two newlines, making a proper paragraph - Properly parse internal hyperlinks in constants description - Fix broken internal links due to missing newlines - Show method header even when it has no description, to have something to reference in hyperlinks
48 lines
962 B
Makefile
48 lines
962 B
Makefile
BASEDIR = $(CURDIR)
|
|
CLASSES = $(BASEDIR)/base/classes.xml
|
|
OUTPUTDIR = $(BASEDIR)/_build
|
|
TOOLSDIR = $(BASEDIR)/tools
|
|
|
|
.ONESHELL:
|
|
|
|
clean:
|
|
rm -rf $(OUTPUTDIR)
|
|
|
|
doku:
|
|
rm -rf $(OUTPUTDIR)/doku
|
|
mkdir -p $(OUTPUTDIR)/doku
|
|
pushd $(OUTPUTDIR)/doku
|
|
python2 $(TOOLSDIR)/makedoku.py $(CLASSES)
|
|
popd
|
|
|
|
doxygen:
|
|
rm -rf $(OUTPUTDIR)/doxygen
|
|
mkdir -p $(OUTPUTDIR)/doxygen
|
|
doxygen Doxyfile
|
|
|
|
html:
|
|
rm -rf $(OUTPUTDIR)/html
|
|
mkdir -p $(OUTPUTDIR)/html
|
|
pushd $(OUTPUTDIR)/html
|
|
python2 $(TOOLSDIR)/makehtml.py -multipage $(CLASSES)
|
|
popd
|
|
|
|
markdown:
|
|
rm -rf $(OUTPUTDIR)/markdown
|
|
mkdir -p $(OUTPUTDIR)/markdown
|
|
pushd $(OUTPUTDIR)/markdown
|
|
python2 $(TOOLSDIR)/makemd.py $(CLASSES)
|
|
popd
|
|
|
|
rst:
|
|
rm -rf $(OUTPUTDIR)/rst
|
|
mkdir -p $(OUTPUTDIR)/rst
|
|
pushd $(OUTPUTDIR)/rst
|
|
python2 $(TOOLSDIR)/makerst.py $(CLASSES)
|
|
popd
|
|
|
|
textile:
|
|
rm -rf $(OUTPUTDIR)/textile
|
|
mkdir -p $(OUTPUTDIR)/textile
|
|
python3 $(TOOLSDIR)/makedocs.py --input $(CLASSES) --output $(OUTPUTDIR)/textile
|