Makefile 189 B

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