1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2024-10-26 07:55:06 +03:00

build: provide wrapper makefile

After years of finger training, I'm so used to 'make check' just
working, that I lose quite a bit of time re-learning that in this
project, it is spelled 'python setup.py build check'.  A shim
makefile bridges the gap.

* Makefile: New file.

Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
Eric Blake 2014-06-18 13:17:52 -06:00
parent 87b0d97937
commit 4db97751bd

18
Makefile Normal file
View File

@ -0,0 +1,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