File: makefile

package info (click to toggle)
bcolz 1.2.1%2Bds2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,528 kB
  • sloc: python: 9,691; makefile: 148; sh: 26; ansic: 11
file content (15 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (2)
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 docs

build:
	python setup.py build_ext -i

test:
	python -c "import bcolz ; bcolz.test(heavy=True)"

clean:
	git clean -dfX; git clean -dfx

docs:
	cd docs && make html