source:
trunk/Makefile
@
3
| Revision 3, 256 bytes checked in by xi, 8 years ago (diff) |
|---|
| Line | |
|---|---|
| 1 | |
| 2 | .PHONY: default build install test clean |
| 3 | |
| 4 | PYTHON=/usr/bin/python |
| 5 | TEST= |
| 6 | |
| 7 | default: build |
| 8 | |
| 9 | build: |
| 10 | ${PYTHON} setup.py build |
| 11 | |
| 12 | install: build |
| 13 | ${PYTHON} setup.py install |
| 14 | |
| 15 | test: build |
| 16 | ${PYTHON} tests/test_build.py ${TEST} |
| 17 | |
| 18 | clean: |
| 19 | ${PYTHON} setup.py clean -a |
| 20 |
Note: See TracBrowser
for help on using the repository browser.
