Files
ortools-clone/makefiles/Makefile.doc.mk

62 lines
2.4 KiB
Makefile
Raw Normal View History

2019-06-13 13:46:16 +02:00
# Generate documentation
2020-01-31 15:21:03 +01:00
.PHONY: help_doc # Generate list of Documentation targets with descriptions.
help_doc:
@echo Use one of the following Documentation targets:
@$(GREP) "^.PHONY: .* #" $(CURDIR)/makefiles/Makefile.doc.mk | $(SED) "s/\.PHONY: \(.*\) # \(.*\)/\1\t\2/" | expand -t20
@echo
2019-06-13 13:46:16 +02:00
2020-01-31 15:21:03 +01:00
# Main target
.PHONY: doc # Create doxygen and python documentation.
2021-01-28 17:27:39 +01:00
doc: doxy-doc python-doc java-doc
2019-06-13 13:46:16 +02:00
2020-01-31 15:21:03 +01:00
.PHONY: doxy-doc # Create doxygen ref documentation.
doxy-doc: cc python java dotnet
bash -c "command -v doxygen"
2019-08-07 18:01:08 -07:00
python3 tools/doc/gen_ref_doc.py
2019-06-13 13:46:16 +02:00
2021-01-28 17:27:39 +01:00
.PHONY: java-doc # Create Javadoc ref documentation.
java-doc: java
tools/doc/gen_javadoc.sh
2020-01-31 15:21:03 +01:00
.PHONY: python-doc # Create python documentation.
2019-06-13 13:46:16 +02:00
python-doc:
2021-09-20 15:23:45 +02:00
bash -c "command -v pdoc"
$(SET_PYTHONPATH) pdoc \
2021-09-24 09:39:49 +02:00
--logo https://developers.google.com/optimization/images/orLogo.png \
-o docs/python/ \
--no-search -d google \
--footer-text "OR-Tools ${OR_TOOLS_MAJOR}.${OR_TOOLS_MINOR}" \
2022-03-04 00:23:41 +01:00
dependencies/python/ortools/sat/python/cp_model.py
2021-09-20 15:23:45 +02:00
$(SET_PYTHONPATH) pdoc \
2021-09-24 09:39:49 +02:00
--logo https://developers.google.com/optimization/images/orLogo.png \
-o docs/python/ortools/util/ \
--no-search -d google \
--footer-text "OR-Tools ${ORTOOLS_MAJOR}.${ORTOOLS_MINOR}" \
--footer-text "OR-Tools ${OR_TOOLS_MAJOR}.${OR_TOOLS_MINOR}" \
2022-03-04 00:23:41 +01:00
dependencies/python/ortools/util/python/sorted_interval_list.py
2021-09-20 15:23:45 +02:00
$(SET_PYTHONPATH) pdoc \
2021-09-24 09:39:49 +02:00
--logo https://developers.google.com/optimization/images/orLogo.png \
-o docs/python/ortools/linear_solver/ \
--no-search -d google \
--footer-text "OR-Tools ${OR_TOOLS_MAJOR}.${OR_TOOLS_MINOR}" \
2022-03-04 00:23:41 +01:00
dependencies/python/ortools/linear_solver/pywraplp.py
2021-09-20 15:23:45 +02:00
$(SET_PYTHONPATH) pdoc \
2021-09-24 09:39:49 +02:00
--logo https://developers.google.com/optimization/images/orLogo.png \
-o docs/python/ortools/constraint_solver/ \
--no-search -d google \
--footer-text "OR-Tools ${OR_TOOLS_MAJOR}.${OR_TOOLS_MINOR}" \
2022-03-04 00:23:41 +01:00
dependencies/python/ortools/constraint_solver/pywrapcp.py
2021-09-20 15:23:45 +02:00
$(SET_PYTHONPATH) pdoc \
2021-09-24 09:39:49 +02:00
--logo https://developers.google.com/optimization/images/orLogo.png \
-o docs/python/ortools/algorithms/ \
--no-search -d google \
--footer-text "OR-Tools ${OR_TOOLS_MAJOR}.${OR_TOOLS_MINOR}" \
2022-03-04 00:23:41 +01:00
dependencies/python/ortools/algorithms/pywrapknapsack_solver.py
2021-09-20 15:23:45 +02:00
$(SET_PYTHONPATH) pdoc \
2021-09-24 09:39:49 +02:00
--logo https://developers.google.com/optimization/images/orLogo.png \
-o docs/python/ortools/graph/ \
--no-search -d google \
--footer-text "OR-Tools ${OR_TOOLS_MAJOR}.${OR_TOOLS_MINOR}" \
2022-03-04 00:23:41 +01:00
dependencies/python/ortools/graph/pywrapgraph.py