Add packaging
[platform/upstream/python-gpgme.git] / Makefile
1 PYTHON = python2.4
2
3 build:
4         $(PYTHON) setup.py build_ext -i
5
6 check: build
7         $(PYTHON) test_all.py -v
8
9 clean:
10         $(PYTHON) setup.py clean
11
12 dist: build
13         $(PYTHON) setup.py sdist --force-manifest
14
15 .PHONY: build check clean dist