forked from mpi4py/mpi4py
-
Notifications
You must be signed in to change notification settings - Fork 1
/
makefile
115 lines (100 loc) · 3.23 KB
/
makefile
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.PHONY: default
default: build
PYTHON = python
# ----
.PHONY: config build test
config:
${PYTHON} setup.py config ${CONFIGOPT}
build:
${PYTHON} setup.py build ${BUILDOPT}
test:
${MPIEXEC} ${VALGRIND} ${PYTHON} ${PWD}/test/runtests.py < /dev/null
.PHONY: clean distclean srcclean fullclean
clean:
${PYTHON} setup.py clean --all
distclean: clean
-${RM} -r build _configtest* *.py[co]
-${RM} -r MANIFEST dist mpi4py.egg-info
-${RM} -r conf/__pycache__ test/__pycache__
-${RM} -r demo/__pycache__ src/mpi4py/__pycache__
-find conf -name '*.py[co]' -exec rm -f {} ';'
-find demo -name '*.py[co]' -exec rm -f {} ';'
-find test -name '*.py[co]' -exec rm -f {} ';'
-find src -name '*.py[co]' -exec rm -f {} ';'
srcclean:
${RM} src/mpi4py.MPI.c
${RM} src/mpi4py/include/mpi4py/mpi4py.MPI.h
${RM} src/mpi4py/include/mpi4py/mpi4py.MPI_api.h
fullclean: distclean srcclean docsclean
-find . -name '*~' -exec rm -f {} ';'
# ----
.PHONY: install uninstall
install: build
${PYTHON} setup.py install --prefix='' --user ${INSTALLOPT}
uninstall:
-${RM} -r $(shell ${PYTHON} -m site --user-site)/mpi4py
-${RM} -r $(shell ${PYTHON} -m site --user-site)/mpi4py-*-py*.egg-info
# ----
.PHONY: docs docs-html docs-pdf docs-misc
docs: docs-html docs-pdf docs-misc
docs-html: rst2html sphinx-html epydoc-html
docs-pdf: sphinx-pdf epydoc-pdf
docs-misc: sphinx-man sphinx-info
RST2HTML = $(shell command -v rst2html || command -v rst2html.py || false)
RST2HTMLOPTS = --input-encoding=utf-8
RST2HTMLOPTS += --no-compact-lists
RST2HTMLOPTS += --cloak-email-addresses
.PHONY: rst2html
rst2html:
${RST2HTML} ${RST2HTMLOPTS} ./LICENSE.rst > docs/LICENSE.html
${RST2HTML} ${RST2HTMLOPTS} ./CHANGES.rst > docs/CHANGES.html
${RST2HTML} ${RST2HTMLOPTS} docs/index.rst > docs/index.html
SPHINXBUILD = sphinx-build
SPHINXOPTS =
.PHONY: sphinx sphinx-html sphinx-pdf sphinx-man sphinx-info
sphinx: sphinx-html sphinx-pdf sphinx-man sphinx-info
sphinx-html:
${PYTHON} -c 'import mpi4py.MPI'
mkdir -p build/doctrees docs/usrman
${SPHINXBUILD} -b html -d build/doctrees ${SPHINXOPTS} \
docs/source/usrman docs/usrman
${RM} docs/usrman/.buildinfo
sphinx-pdf:
${PYTHON} -c 'import mpi4py.MPI'
mkdir -p build/doctrees build/latex
${SPHINXBUILD} -b latex -d build/doctrees ${SPHINXOPTS} \
docs/source/usrman build/latex
${MAKE} -C build/latex all-pdf > /dev/null
mv build/latex/*.pdf docs/
sphinx-man:
${PYTHON} -c 'import mpi4py.MPI'
mkdir -p build/doctrees build/man
${SPHINXBUILD} -b man -d build/doctrees ${SPHINXOPTS} \
docs/source/usrman build/man
mv build/man/*.[137] docs/
sphinx-info:
${PYTHON} -c 'import mpi4py.MPI'
mkdir -p build/doctrees build/texinfo
${SPHINXBUILD} -b texinfo -d build/doctrees ${SPHINXOPTS} \
docs/source/usrman build/texinfo
${MAKE} -C build/texinfo info > /dev/null
mv build/texinfo/*.info docs/
EPYDOCBUILD = ${PYTHON} ./conf/epydocify.py
EPYDOCOPTS =
.PHONY: epydoc epydoc-html epydoc-pdf
epydoc: epydoc-html epydoc-pdf
epydoc-html:
${PYTHON} -c 'import mpi4py.MPI'
mkdir -p docs/apiref
${EPYDOCBUILD} ${EPYDOCOPTS} --html -o docs/apiref
epydoc-pdf:
.PHONY:
docsclean:
-${RM} docs/*.info docs/*.[137]
-${RM} docs/*.html docs/*.pdf
-${RM} -r docs/usrman docs/apiref
# ----
.PHONY: sdist
sdist: src docs
${PYTHON} setup.py sdist ${SDISTOPT}
# ----