Makefile 218 B

123456789101112131415161718
  1. PYTHON = python
  2. SETUP = $(PYTHON) setup.py
  3. TRIAL = trial
  4. all: build
  5. build::
  6. $(SETUP) build
  7. $(SETUP) build_ext -i
  8. install::
  9. $(SETUP) install
  10. check:: build
  11. PYTHONPATH=. $(TRIAL) dulwich
  12. clean::
  13. $(SETUP) clean