blob: 237231e4f460fe205b9fc71cfb59534709980569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|