From 60d9d190cf57ab51239c2c70da169497869f9435 Mon Sep 17 00:00:00 2001 From: LEdoian Date: Fri, 21 Jun 2019 01:54:48 +0200 Subject: [PATCH] =?UTF-8?q?Makefile:=20overridovateln=C3=A9=20konstanty?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use case: python3 není nejnovější python3 na mém systému, ale já chci používat nový python na vývoj webu. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bac61375..d01fb576 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -PYTHON := python3 -VENV := python3 -m venv +PYTHON ?= python3 +VENV ?= ${PYTHON} -m venv # Všechny flagy, které se s venvem/virtualenvem/... mají volat patří sem. Volá se "${VENV} cesta" -VENV_PATH := env +VENV_PATH ?= env # Musí být definovaná, i kdyby to měla být "." .PHONY: all venv_check clean install install_web install_venv clean_venv clean_schema run test deploy_test deploy_prod sync_test_media sync_test_db sync_test sync_local_media sync_local_db sync_local