forked from Advanced_Python/advanced-python-homework-2023
vviora
c91e3f4a1e
new file: .vs/Python_HW/FileContentIndex/bf645799-c9e5-45df-816d-b791fcb04273.vsidx new file: .vs/Python_HW/v17/.wsuo new file: .vs/VSWorkspaceState.json new file: .vs/slnx.sqlite new file: LICENSE new file: Makefile modified: README.md new file: hwvenv/Scripts/Activate.ps1 new file: hwvenv/Scripts/activate new file: hwvenv/Scripts/activate.bat new file: hwvenv/Scripts/deactivate.bat new file: hwvenv/Scripts/pip.exe new file: hwvenv/Scripts/pip3.11.exe new file: hwvenv/Scripts/pip3.exe new file: hwvenv/Scripts/python.exe new file: hwvenv/Scripts/pythonw.exe new file: hwvenv/pyvenv.cfg new file: hwvenv/requirements.txt new file: make.bat new file: setup.py new file: source/conf.py new file: source/index.rst
21 lines
638 B
Makefile
21 lines
638 B
Makefile
# Minimal makefile for Sphinx documentation
|
|
#
|
|
|
|
# You can set these variables from the command line, and also
|
|
# from the environment for the first two.
|
|
SPHINXOPTS ?=
|
|
SPHINXBUILD ?= sphinx-build
|
|
SOURCEDIR = source
|
|
BUILDDIR = build
|
|
|
|
# Put it first so that "make" without argument is like "make help".
|
|
help:
|
|
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
|
|
.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
|
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|