summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6c8da0a8763a59f5e18fb0fcf726676407eb8d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Shim wrapper around setup.py to allow for familiar build targets

PYTHON ?= python

all:
	$(PYTHON) setup.py build

install: all
	$(PYTHON) setup.py install

clean:
	$(PYTHON) setup.py clean

check: all
	$(PYTHON) setup.py test

rpm:
	$(PYTHON) setup.py rpm