diff options
| author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-22 14:54:19 +0200 |
|---|---|---|
| committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-22 14:54:19 +0200 |
| commit | df0fd496fbc7dfcf468f72881e81ef6424fe39fd (patch) | |
| tree | 24fb915bb70e01ddf7146eb83f5910538e80c1df /Makefile | |
| parent | f12586c0fa5c8a877b4a6538d9ebb0c0a1a33745 (diff) | |
| parent | f472f1a6382abc698f74a1afbb07b2274b3a3d45 (diff) | |
merge master
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..237231e --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +default: +.PHONY : install install_bundle get_amalgamation upload test clean + +install: clean + python setup.py install + +install_bundle: clean + python setup.py install --bundled + +get_amalgamation: + scripts/get_latest_amalgamation.sh amalgamation_latest + +upload: + python setup.py sdist upload -r pypi + +test: + rm -f tests/*.db + cd tests && ./run.sh + rm -f tests/*.db + +clean: + rm -rf build dist |
