cp2k/docs/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
700 B
Makefile
Raw Permalink Normal View History

2023-06-06 22:20:50 +02:00
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line, and also
# from the environment for the first two.
2023-06-10 14:51:36 +02:00
SPHINXOPTS ?= -W -n --keep-going --jobs 16
2023-06-06 22:20:50 +02:00
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build
# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
2023-09-10 16:32:04 +02:00
./fix_github_links.py "$(BUILDDIR)"
2023-06-06 22:20:50 +02:00
.PHONY: help Makefile
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
2023-06-10 14:51:36 +02:00
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)