2025-01-10 11:33:35 +01:00
|
|
|
# Copyright 2010-2025 Google LLC
|
2022-06-20 18:27:09 +02:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
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.
|
2022-03-30 09:25:33 +02:00
|
|
|
doxy-doc: cpp python java dotnet
|
2020-01-31 15:21:03 +01:00
|
|
|
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
|
2022-09-15 10:22:15 +02:00
|
|
|
bash -c "command -v mvn"
|
2021-01-28 17:27:39 +01:00
|
|
|
tools/doc/gen_javadoc.sh
|
|
|
|
|
|
2020-01-31 15:21:03 +01:00
|
|
|
.PHONY: python-doc # Create python documentation.
|
2022-09-15 10:22:15 +02:00
|
|
|
python-doc: python
|
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-09-15 10:22:15 +02:00
|
|
|
build_make/python/ortools
|