blob: b626f5c7e9721edbf83071add426d94fcc9d3f67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
HERE = $(shell pwd)
BIN = $(HERE)/bin
PYTHON = $(BIN)/python
INSTALL = $(BIN)/pip install --no-deps
BUILD_DIRS = bin build include lib lib64 man share
VIRTUALENV = virtualenv
.PHONY: all test build docs
all: build
$(PYTHON):
$(VIRTUALENV) $(VTENV_OPTS) .
build: $(PYTHON)
$(PYTHON) setup.py develop
$(BIN)/pip install tox
test: build
$(BIN)/tox
docs: build
$(BIN)/tox -e docs
|