|
| 1 | +# docs/Makefile |
| 2 | +# |
| 3 | +# Copyright (c) 2021-2023 Bartek Kryza <[email protected]> |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | + |
| 17 | + |
| 18 | +UPDATE_TOC := markdown-toc --bullets "*" -i |
| 19 | + |
| 20 | +.PHONY: toc |
| 21 | +toc: |
| 22 | + $(UPDATE_TOC) class_diagrams.md |
| 23 | + $(UPDATE_TOC) comment_decorators.md |
| 24 | + $(UPDATE_TOC) common_options.md |
| 25 | + $(UPDATE_TOC) configuration_file.md |
| 26 | + $(UPDATE_TOC) diagram_filters.md |
| 27 | + $(UPDATE_TOC) doxygen_integration.md |
| 28 | + $(UPDATE_TOC) include_diagrams.md |
| 29 | + $(UPDATE_TOC) installation.md |
| 30 | + $(UPDATE_TOC) interactive_svg_diagrams.md |
| 31 | + $(UPDATE_TOC) jinja_templates.md |
| 32 | + $(UPDATE_TOC) package_diagrams.md |
| 33 | + $(UPDATE_TOC) quick_start.md |
| 34 | + $(UPDATE_TOC) sequence_diagrams.md |
| 35 | + $(UPDATE_TOC) test_cases.md |
| 36 | + $(UPDATE_TOC) troubleshooting.md |
| 37 | + |
0 commit comments