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
|
.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__
-find conf -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/include/mpi4py/mpi4py.MPI.h
${RM} src/include/mpi4py/mpi4py.MPI_api.h
${RM} src/mpi4py.MPE.c
fullclean: distclean srcclean docsclean
-find . -name '*~' -exec rm -f {} ';'
# ----
.PHONY: install uninstall
install: build
${PYTHON} setup.py install ${INSTALLOPT} --home=${HOME}
uninstall:
-${RM} -r ${HOME}/lib/python/mpi4py
-${RM} -r ${HOME}/lib/python/mpi4py-*-py*.egg-info
# ----
.PHONY: docs docs-html docs-pdf
docs: docs-html docs-pdf
docs-html: rst2html sphinx-html epydoc-html
docs-pdf: sphinx-pdf epydoc-pdf
RST2HTML = rst2html
RST2HTMLOPTS = --input-encoding=utf-8
RST2HTMLOPTS += --no-compact-lists
RST2HTMLOPTS += --cloak-email-addresses
.PHONY: rst2html
rst2html:
${RST2HTML} ${RST2HTMLOPTS} ./LICENSE.txt > docs/LICENSE.html
${RST2HTML} ${RST2HTMLOPTS} ./HISTORY.txt > docs/HISTORY.html
${RST2HTML} ${RST2HTMLOPTS} ./THANKS.txt > docs/THANKS.html
${RST2HTML} ${RST2HTMLOPTS} docs/source/index.rst > docs/index.html
SPHINXBUILD = sphinx-build
SPHINXOPTS =
.PHONY: sphinx sphinx-html sphinx-pdf
sphinx: sphinx-html sphinx-pdf
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/
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/*.html docs/*.pdf
-${RM} -r docs/usrman docs/apiref
# ----
.PHONY: sdist
sdist: src docs
${PYTHON} setup.py sdist ${SDISTOPT}
# ----
|