Lines Matching +full:test +full:- +full:cython
10 rm -rf src/
11 if test -n "${DESTDIR}"; then \
12 $(PYTHON2) setup.py build install --root="${DESTDIR}"; \
18 rm -rf src/
19 if test -n "${DESTDIR}"; then \
20 $(PYTHON3) setup.py build install --root="${DESTDIR}"; \
25 # NOTE: Newer cython can be installed by: sudo pip install --upgrade cython
27 rm -rf src/
28 if test -n "${DESTDIR}"; then \
29 $(PYTHON2) setup_cython.py build install --root="${DESTDIR}"; \
35 rm -rf src/
36 if test -n "${DESTDIR}"; then \
37 $(PYTHON3) setup_cython.py build install --root="${DESTDIR}"; \
44 rm -rf src/ dist/
49 rm -rf src/ dist/
54 rm -rf src/ dist/
59 rm -rf src/ dist/
63 rm -rf build/ src/ dist/ *.egg-info
64 rm -rf capstone/lib capstone/include pyx/lib pyx/include
65 rm -f pyx/*.c pyx/__init__.py
66 for f in capstone/*.py; do rm -f pyx/$$(basename $$f)x; done
67 rm -f MANIFEST
68 rm -f *.pyc capstone/*.pyc
79 if [ $$? -eq 0 ]; then echo OK; else echo FAILED; exit 1; fi \