summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPablo Santiago Blum de Aguiar <scorphus@gmail.com>2015-04-04 13:25:24 -0300
committerPablo Santiago Blum de Aguiar <scorphus@gmail.com>2015-04-04 13:25:24 -0300
commit2c225b29fc6daeb343b65d0ca30ba1c7ad297c77 (patch)
tree109697711544fbc103c02ba9988a61c0a7140419 /Makefile
downloadpyyaml-git-2c225b29fc6daeb343b65d0ca30ba1c7ad297c77.tar.gz
scanner: use infinitive verb after auxiliary word could
Could, as well as should, shall, must, may, can, might, etc. are auxiliary words. After an auxiliary word should come an infinitive verb.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..da249e3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,42 @@
+
+.PHONY: default build buildext force forceext install installext test testext dist clean
+
+PYTHON=/usr/bin/python
+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
+ ${PYTHON} tests/lib/test_build.py ${TEST}
+
+testext: buildext
+ ${PYTHON} tests/lib/test_build_ext.py ${TEST}
+
+testall:
+ ${PYTHON} setup.py test
+
+dist:
+ ${PYTHON} setup.py --with-libyaml sdist --formats=zip,gztar
+
+windist:
+ ${PYTHON} setup.py --with-libyaml bdist_wininst
+
+clean:
+ ${PYTHON} setup.py --with-libyaml clean -a