forked from vispy/vispy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·68 lines (45 loc) · 1008 Bytes
/
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
# simple makefile to simplify repetetive build env management tasks under posix
PYTHON ?= python
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: clean-build clean-pyc clean-so clean-ctags
in: inplace # just a shortcut
inplace:
$(PYTHON) setup.py build_ext -i
nosetests: nose # alias
# Test conditions
nose: clean
python make test nose
nose_coverage: clean
python make test nose 1
test: clean
python make test full
flake: clean
python make test flake
lineendings: clean
python make test lineendings
extra: clean
python make test extra
nobackend : clean
python make test nobackend
pyqt4: clean
python make test pyqt4
pyside: clean
python make test pyside
pyglet: clean
python make test pyglet
glfw: clean
python make test glfw
sdl2: clean
python make test sdl2
glut: clean
python make test glut