-
Notifications
You must be signed in to change notification settings - Fork 518
/
Makefile
48 lines (35 loc) · 962 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.PHONY: build dist
PYTHON=/usr/bin/python3
TEST=
PARAMETERS=
build:
${PYTHON} setup.py build ${PARAMETERS}
buildext:
${PYTHON} setup.py --with-libyaml build ${PARAMETERS}
force:
${PYTHON} setup.py build -f ${PARAMETERS}
forceext:
${PYTHON} setup.py --with-libyaml build -f ${PARAMETERS}
install:
${PYTHON} setup.py install ${PARAMETERS}
installext:
${PYTHON} setup.py --with-libyaml install ${PARAMETERS}
test: build
PYYAML_FORCE_LIBYAML=0 ${PYTHON} -I -m pytest
testext: buildext
PYYAML_FORCE_LIBYAML=1 ${PYTHON} -I -m pytest
testall:
${PYTHON} -m pytest
dist:
@# No longer uploading a zip file to pypi
@# ${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar
${PYTHON} setup.py --with-libyaml sdist --formats=gztar
clean:
${PYTHON} setup.py --with-libyaml clean -a
rm -fr \
dist/ \
lib/PyYAML.egg-info/ \
lib/yaml/__pycache__/ \
tests/__pycache__/ \
tests/legacy_tests/__pycache__/ \
yaml/_yaml.c