Move pysyck to the new location.
[pyyaml/python3.git] / Makefile
blob4536e728fe8471634594ff592bd66a54ace793c5
2 .PHONY: default build force install test dist-src clean
4 PYTHON=/usr/bin/python
5 TEST=
6 PARAMETERS=
8 build:
9 ${PYTHON} setup.py build ${PARAMETERS}
11 force:
12 ${PYTHON} setup.py build -f ${PARAMETERS}
14 install: build
15 ${PYTHON} setup.py install ${PARAMETERS}
17 test: build
18 ${PYTHON} tests/test_build.py ${TEST}
20 dist-src:
21 ${PYTHON} setup.py sdist --formats=zip,gztar
23 clean:
24 ${PYTHON} setup.py clean -a