Backed out 4 changesets (bug 1825722) for causing reftest failures CLOSED TREE
[gecko.git] / testing / condprofile / Makefile
blobb626f5c7e9721edbf83071add426d94fcc9d3f67
1 HERE = $(shell pwd)
2 BIN = $(HERE)/bin
3 PYTHON = $(BIN)/python
4 INSTALL = $(BIN)/pip install --no-deps
5 BUILD_DIRS = bin build include lib lib64 man share
6 VIRTUALENV = virtualenv
8 .PHONY: all test build docs
10 all: build
12 $(PYTHON):
13 $(VIRTUALENV) $(VTENV_OPTS) .
15 build: $(PYTHON)
16 $(PYTHON) setup.py develop
17 $(BIN)/pip install tox
19 test: build
20 $(BIN)/tox
22 docs: build
23 $(BIN)/tox -e docs