File: Makefile

package info (click to toggle)
pygpgme 0.2-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 440 kB
  • sloc: ansic: 2,860; python: 1,389; makefile: 35; sh: 14
file content (15 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#PYTHON = python

build:
	$(PYTHON) setup.py build_ext -i

check: build
	GPG_AGENT_INFO= $(PYTHON) test_all.py -v

clean:
	$(PYTHON) setup.py clean

dist: build
	$(PYTHON) setup.py sdist --force-manifest

.PHONY: build check clean dist