~ubuntu-branches/ubuntu/trusty/pyopencl/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY	: all install clean tags dist userdoc devdoc

all: tags
	${PYTHON_EXE} setup.py build

dist:
	${PYTHON_EXE} setup.py sdist

install: tags
	${PYTHON_EXE} setup.py install

clean:
	rm -Rf build
	rm -f tags
	-rm -f siteconf.py
	-find -name '*.pyc' -delete

tags:
	ctags -R src || true

tests:
	echo "running tests"
	find ./test -type f -name "*.py" -exec python {} \;