File: makefile

package info (click to toggle)
python-blosc 1.4.4%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 380 kB
  • ctags: 304
  • sloc: python: 1,801; ansic: 384; makefile: 147
file content (15 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This is the maintainers undocumented Makefile.
# Nothin to see here, please move along.
.PHONY: build test clean doc

build:
	python setup.py build_ext -i

test:
	python -c "import blosc ; blosc.test()"

clean:
	git clean -dfX; git clean -dfx

doc:
	cd doc && make html