core-admin-client/Makefile
Marek Marczykowski-Górecki 7bafd631d4
Exclude tools and events from python2 tests and packaging
Those two parts require python3.
To avoid duplicating the exclude list, run tests and pylint on a copy
installed via setuptools.
2017-04-29 01:18:25 +02:00

13 lines
186 B
Makefile

.PHONY: all
all: build
PYTHON ?= python
.PHONY: build
build:
$(PYTHON) setup.py build
.PHONY: install
install:
$(PYTHON) setup.py install -O1 $(PYTHON_PREFIX_ARG) --root $(DESTDIR)