FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
array-api/Makefile at main · Saransh-cpp/array-api · GitHub
Saransh-cpp
/
array-api
Public
forked from
data-apis/array-api
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
array-api
/
Makefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (24 loc) · 1.01 KB
Breadcrumbs
array-api
/
Makefile
Copy path
File metadata and controls
29 lines (24 loc) · 1.01 KB
Raw
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
#
You can set these variables from the command line.
SPHINXOPTS
?= -W --keep-going
SOURCEDIR
= spec
BUILDDIR
= _site
.PHONY
: default clean draft spec
default
: clean spec
clean
:
rm -rf
$(
BUILDDIR
)
find
.
-type d -name generated -exec rm -rf {} +
draft
:
mkdir -p
$(
BUILDDIR
)
sphinx-build
"
$(
SOURCEDIR
)
/draft
"
"
$(
BUILDDIR
)
/draft
"
$(
SPHINXOPTS
)
spec
:
mkdir -p
$(
BUILDDIR
)
cp
"
$(
SOURCEDIR
)
/_ghpages/_gitignore.txt
"
"
$(
BUILDDIR
)
/.gitignore
"
cp
"
$(
SOURCEDIR
)
/_ghpages/versions.json
"
"
$(
BUILDDIR
)
/versions.json
"
cp
"
$(
SOURCEDIR
)
/_ghpages/index.html
"
"
$(
BUILDDIR
)
/index.html
"
touch
"
$(
BUILDDIR
)
/.nojekyll
"
sphinx-build
"
$(
SOURCEDIR
)
/2021.12
"
"
$(
BUILDDIR
)
/2021.12
"
$(
SPHINXOPTS
)
sphinx-build
"
$(
SOURCEDIR
)
/2022.12
"
"
$(
BUILDDIR
)
/2022.12
"
$(
SPHINXOPTS
)
sphinx-build
"
$(
SOURCEDIR
)
/2023.12
"
"
$(
BUILDDIR
)
/2023.12
"
$(
SPHINXOPTS
)
sphinx-build
"
$(
SOURCEDIR
)
/2024.12
"
"
$(
BUILDDIR
)
/2024.12
"
$(
SPHINXOPTS
)
cp -r
"
$(
BUILDDIR
)
/2024.12
"
"
$(
BUILDDIR
)
/latest
"
sphinx-build
"
$(
SOURCEDIR
)
/draft
"
"
$(
BUILDDIR
)
/draft
"
$(
SPHINXOPTS
)
Back
|
FazBrowse Home
|
New Git URL