Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/testing/condprofile/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 388 B image not shown  

Quelle  Makefile   Sprache: unbekannt

 
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

[ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet)  ]