Makefile 750 B

123456789101112131415161718192021222324252627
  1. #
  2. # SPDX-FileCopyrightText: 2018-2023 EasyCoding Team and contributors
  3. #
  4. # SPDX-License-Identifier: CC-BY-SA-4.0
  5. #
  6. # Minimal makefile for Sphinx documentation
  7. #
  8. # You can set these variables from the command line.
  9. SPHINXOPTS = -W --keep-going -n
  10. SPHINXBUILD = sphinx-build
  11. SPHINXPROJ = fedora-faq-ru
  12. SOURCEDIR = source
  13. BUILDDIR = build
  14. # Put it first so that "make" without argument is like "make help".
  15. help:
  16. @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
  17. .PHONY: help Makefile
  18. # Catch-all target: route all unknown targets to Sphinx using the new
  19. # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
  20. %: Makefile
  21. @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)