forked from purduesigbots/pros-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (22 loc) · 801 Bytes
/
Makefile
File metadata and controls
29 lines (22 loc) · 801 Bytes
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
.PHONY: cortex home v5 all clean linkcheck quick
quick: home v5 cortex
all: clean home v5 cortex
cortex:
sphinx-build ./cortex/ ./build/cortex
home:
sphinx-build ./home/ ./build/
mv ./build/_static/githubupdate.php ./build || true
mv ./build/_static/pros-tux-b-b.png ./build || true
mv ./build/_static/pros-tux-b.png ./build || true
mv ./build/_static/pros-tux-fc-b.png ./build || true
mv ./build/_static/pros-tux-fc.png ./build || true
mv ./build/_static/pros-tux-w-w.png ./build || true
mv ./build/_static/windows-updates.txt ./build || true
v5:
sphinx-build ./v5/ ./build/v5/
clean:
-rm -rf ./build
linkcheck:
sphinx-build -b linkcheck ./cortex/ ./build/cortex
sphinx-build -b linkcheck ./home/ ./build/
sphinx-build -b linkcheck ./v5/ ./build/v5/