makefile 285 B

123456789101112131415
  1. # This is the maintainers undocumented Makefile.
  2. # Nothin to see here, please move along.
  3. .PHONY: build test clean docs
  4. build:
  5. python setup.py build_ext -i
  6. test:
  7. python -c "import bcolz ; bcolz.test(heavy=True)"
  8. clean:
  9. git clean -dfX; git clean -dfx
  10. docs:
  11. cd docs && make html