source:
trunk/Makefile
@
4
| Revision 4, 302 bytes checked in by xi, 8 years ago (diff) |
|---|
| Line | |
|---|---|
| 1 | |
| 2 | .PHONY: default build force 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 | force: |
| 13 | ${PYTHON} setup.py build -f |
| 14 | |
| 15 | install: build |
| 16 | ${PYTHON} setup.py install |
| 17 | |
| 18 | test: build |
| 19 | ${PYTHON} tests/test_build.py -v ${TEST} |
| 20 | |
| 21 | clean: |
| 22 | ${PYTHON} setup.py clean -a |
| 23 |
Note: See TracBrowser
for help on using the repository browser.
