Use a better describing name for VIRTUAL_ENV
Rename variable from VIRTUAL_ENV to VIRTUAL_ENV_DIR.
This commit is contained in:
parent
674ea295a8
commit
4d31b9ad3d
24
Makefile
24
Makefile
@ -11,10 +11,10 @@ SHELL = /bin/sh
|
|||||||
|
|
||||||
BASE_DIR = .
|
BASE_DIR = .
|
||||||
PYTHON3_BIN = python3
|
PYTHON3_BIN = python3
|
||||||
VIRTUAL_ENV = env
|
VIRTUAL_ENV_DIR = env
|
||||||
|
|
||||||
export VIRTUAL_ENV := $(abspath ${VIRTUAL_ENV})
|
export VIRTUAL_ENV := $(abspath ${VIRTUAL_ENV_DIR})
|
||||||
export PATH := ${VIRTUAL_ENV}/bin:${PATH}
|
export PATH := ${VIRTUAL_ENV_DIR}/bin:${PATH}
|
||||||
|
|
||||||
HELP= @grep -B1 '^[a-zA-Z\-]*:' Makefile |\
|
HELP= @grep -B1 '^[a-zA-Z\-]*:' Makefile |\
|
||||||
awk 'function p(h,t){printf"%-12s=%s\n",h,t;};\
|
awk 'function p(h,t){printf"%-12s=%s\n",h,t;};\
|
||||||
@ -42,26 +42,26 @@ distclean: clean venv-clean
|
|||||||
@echo "Remove Git repository data (.git*) ..."
|
@echo "Remove Git repository data (.git*) ..."
|
||||||
@(RM) --force .git .gitignore
|
@(RM) --force .git .gitignore
|
||||||
|
|
||||||
$(VIRTUAL_ENV)/bin/activate: requirements.txt
|
$(VIRTUAL_ENV_DIR)/bin/activate: requirements.txt
|
||||||
test -d $(VIRTUAL_ENV) || virtualenv $(VIRTUAL_ENV)
|
test -d $(VIRTUAL_ENV_DIR) || virtualenv $(VIRTUAL_ENV_DIR)
|
||||||
. $(VIRTUAL_ENV)/bin/activate
|
. $(VIRTUAL_ENV_DIR)/bin/activate
|
||||||
$(VIRTUAL_ENV)/bin/pip install -Ur requirements.txt
|
$(VIRTUAL_ENV_DIR)/bin/pip install -Ur requirements.txt
|
||||||
touch $(VIRTUAL_ENV)/bin/activate
|
touch $(VIRTUAL_ENV_DIR)/bin/activate
|
||||||
|
|
||||||
#+ Setup the virtual environment from scratch
|
#+ Setup the virtual environment from scratch
|
||||||
venv: $(VIRTUAL_ENV)/bin/activate
|
venv: $(VIRTUAL_ENV_DIR)/bin/activate
|
||||||
|
|
||||||
#+ Freeze the current virtual environment by update requirements.txt
|
#+ Freeze the current virtual environment by update requirements.txt
|
||||||
venv-freeze:
|
venv-freeze:
|
||||||
source $(VIRTUAL_ENV)/bin/activate && $(VIRTUAL_ENV)/bin/pip freeze > requirements.txt
|
source $(VIRTUAL_ENV_DIR)/bin/activate && $(VIRTUAL_ENV_DIR)/bin/pip freeze > requirements.txt
|
||||||
|
|
||||||
#+ Remove the virtual environment
|
#+ Remove the virtual environment
|
||||||
venv-clean:
|
venv-clean:
|
||||||
rm -rf $(VIRTUAL_ENV)
|
rm -rf $(VIRTUAL_ENV_DIR)
|
||||||
|
|
||||||
#+ Compile Python to JavaScript
|
#+ Compile Python to JavaScript
|
||||||
build: venv
|
build: venv
|
||||||
. $(VIRTUAL_ENV)/bin/activate
|
. $(VIRTUAL_ENV_DIR)/bin/activate
|
||||||
transcrypt --build --map --nomin -e 6 OOMAnalyser.py
|
transcrypt --build --map --nomin -e 6 OOMAnalyser.py
|
||||||
rollup --format=umd --name OOMAnalyser --file=OOMAnalyser.js -- __target__/OOMAnalyser.js
|
rollup --format=umd --name OOMAnalyser --file=OOMAnalyser.js -- __target__/OOMAnalyser.js
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user