source:
pyyaml/trunk/Makefile
@
229
| Revision 229, 745 bytes checked in by xi, 7 years ago (diff) |
|---|
| Rev | Line | |
|---|---|---|
| [39] | 1 | |
| [195] | 2 | .PHONY: default build buildext force forceext install installext test testext dist clean |
| [39] | 3 | |
| 4 | PYTHON=/usr/bin/python | |
| 5 | TEST= | |
| 6 | PARAMETERS= | |
| 7 | ||
| 8 | build: | |
| 9 | ${PYTHON} setup.py build ${PARAMETERS} | |
| 10 | ||
| [195] | 11 | buildext: |
| [229] | 12 | ${PYTHON} setup_with_libyaml.py build ${PARAMETERS} |
| [195] | 13 | |
| [39] | 14 | force: |
| 15 | ${PYTHON} setup.py build -f ${PARAMETERS} | |
| 16 | ||
| [195] | 17 | forceext: |
| [229] | 18 | ${PYTHON} setup_with_libyaml.py build -f ${PARAMETERS} |
| [195] | 19 | |
| [39] | 20 | install: build |
| 21 | ${PYTHON} setup.py install ${PARAMETERS} | |
| 22 | ||
| [195] | 23 | installext: buildext |
| [229] | 24 | ${PYTHON} setup_with_libyaml.py install ${PARAMETERS} |
| [195] | 25 | |
| [39] | 26 | test: build |
| [48] | 27 | ${PYTHON} tests/test_build.py ${TEST} |
| [39] | 28 | |
| [195] | 29 | testext: buildext |
| 30 | ${PYTHON} tests/test_build_ext.py ${TEST} | |
| 31 | ||
| 32 | dist: | |
| [59] | 33 | ${PYTHON} setup.py sdist --formats=zip,gztar |
| [166] | 34 | |
| [195] | 35 | windist: |
| [156] | 36 | ${PYTHON} setup.py bdist_wininst |
| [59] | 37 | |
| [39] | 38 | clean: |
| 39 | ${PYTHON} setup.py clean -a |
Note: See TracBrowser
for help on using the repository browser.
