File: makefile

package info (click to toggle)
python-blosc 1.9.2%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 440 kB
  • sloc: python: 827; ansic: 464; makefile: 227; sh: 3
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