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
|
# simple makefile to simplify repetetive build env management tasks under posix
CTAGS ?= ctags
all: clean inplace test
clean-pyc:
@find . -name "*.pyc" | xargs rm -f
clean-so:
@find . -name "*.so" | xargs rm -f
@find . -name "*.pyd" | xargs rm -f
clean-build:
@rm -rf build
clean-ctags:
@rm -f tags
clean-cache:
@find . -name "__pycache__" | xargs rm -rf
clean: clean-build clean-pyc clean-so clean-ctags clean-cache
@echo "Cleaning build, pyc, so, ctags, and cache"
clean-test: clean-build clean-pyc clean-ctags clean-cache
@echo "Cleaning build, pyc, ctags, and cache"
in: inplace # just a shortcut
inplace:
python setup.py build_ext -i
# Test conditions, don't "clean-so" or builds won't work!
unit: clean-test
python make test unit
examples: clean-test
python make test examples
coverage_html:
python make coverage_html
gallery:
python make images gallery
test: clean-test
python make test full
test3: clean-test
python3 make test full
flake: clean-test
python make test flake
docs: clean-test
python make test docs
flake3: clean-test
python3 make test flake
lineendings: clean-test
python make test lineendings
extra: clean-test
python make test extra
nobackend : clean-test
python make test nobackend
pyqt4: clean-test
python make test pyqt4
pyqt5: clean-test
python make test pyqt5
pyqt6: clean-test
python make test pyqt6
pyside: clean-test
python make test pyside
pyside2: clean-test
python make test pyside2
pyside6: clean-test
python make test pyside6
pyglet: clean-test
python make test pyglet
glfw: clean-test
python make test glfw
sdl2: clean-test
python make test sdl2
wx: clean-test
python make test wx
egl: clean-test
python make test egl
osmesa: clean-test
python make test osmesa
ipynb_vnc: clean-test
python make test ipynb_vnc
check-manifest:
check-manifest
|