File: Makefile.in

package info (click to toggle)
pycuda 2018.1.1-3
  • links: PTS, VCS
  • area: contrib
  • in suites: buster
  • size: 1,604 kB
  • sloc: python: 12,307; cpp: 9,967; makefile: 149; sh: 1
file content (23 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (7)
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 {} \;