-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathmake.py
More file actions
executable file
·55 lines (44 loc) · 1.25 KB
/
make.py
File metadata and controls
executable file
·55 lines (44 loc) · 1.25 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from __future__ import print_function
import fileinput
import glob
import os
import shutil
import sys
def html():
os.system('LC_ALL=C.UTF-8 sphinx-build -b html -c source/ -d build/doctrees . build/html')
def latex():
if sys.platform != 'win32':
# LaTeX format.
os.system('sphinx-build -b latex -d build/doctrees . build/latex')
# Produce pdf.
os.chdir('build/latex')
# Copying the makefile produced by sphinx...
os.system('pdflatex Basemap.tex')
os.system('pdflatex Basemap.tex')
os.system('makeindex -s python.ist Basemap.idx')
os.system('makeindex -s python.ist modBasemap.idx')
os.system('pdflatex Basemap.tex')
os.chdir('../..')
else:
print('latex build has not been tested on windows')
def clean():
shutil.rmtree('build')
def all():
html()
latex()
funcd = {
'html':html,
'latex':latex,
'clean':clean,
'all':all,
}
if len(sys.argv)>1:
for arg in sys.argv[1:]:
func = funcd.get(arg)
if func is None:
raise SystemExit('Do not know how to handle %s; valid args are'%(
arg, list(funcd.keys())))
func()
else:
all()