core-admin-client/Makefile

13 lines
199 B
Makefile
Raw Normal View History

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