| Revision 4,
302 bytes
checked in by xi, 8 years ago
(diff) |
|
Add the module _syck and test suite.
|
| Rev | Line | |
|---|
| [3] | 1 | |
|---|
| [4] | 2 | .PHONY: default build force install test clean |
|---|
| [3] | 3 | |
|---|
| 4 | PYTHON=/usr/bin/python |
|---|
| 5 | TEST= |
|---|
| 6 | |
|---|
| 7 | default: build |
|---|
| 8 | |
|---|
| 9 | build: |
|---|
| 10 | ${PYTHON} setup.py build |
|---|
| 11 | |
|---|
| [4] | 12 | force: |
|---|
| 13 | ${PYTHON} setup.py build -f |
|---|
| 14 | |
|---|
| [3] | 15 | install: build |
|---|
| 16 | ${PYTHON} setup.py install |
|---|
| 17 | |
|---|
| 18 | test: build |
|---|
| [4] | 19 | ${PYTHON} tests/test_build.py -v ${TEST} |
|---|
| [3] | 20 | |
|---|
| 21 | clean: |
|---|
| 22 | ${PYTHON} setup.py clean -a |
|---|
| 23 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.