Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
30 lines (25 loc) · 931 Bytes

File metadata and controls

30 lines (25 loc) · 931 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# You can set these variables from the command line.
CPYTHON_PATH = ../cpython
PYTHON = python3
PACKAGE_ABS_PATH = $(shell pwd)/$(shell find dist/python-docs-theme-*.tar.gz)
SPHINXOPTS =
.PHONY: help
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " venv to create a venv with necessary tools at $(CPYTHON_PATH)/Doc/venv"
@echo " html to make standalone CPython HTML files"
@echo " htmlview to open the index page built by the html target in your browser"
.PHONY: venv
venv:
$(PYTHON) -m pip install build
$(PYTHON) -m build
cd $(CPYTHON_PATH)/Doc \
&& make venv \
&& ./venv/bin/pip install $(PACKAGE_ABS_PATH)
.PHONY: html
html: venv
cd $(CPYTHON_PATH)/Doc && \
make SPHINXOPTS="$(SPHINXOPTS)" html
.PHONY: htmlview
htmlview: html
$(PYTHON) -c "import os, webbrowser; webbrowser.open('file://' + os.path.realpath('$(CPYTHON_PATH)/Doc/build/html/index.html'))"
Morty Proxy This is a proxified and sanitized view of the page, visit original site.