aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRémy HUBSCHER <hubscher.remy@gmail.com>2020-04-21 11:15:35 +0200
committerRémy HUBSCHER <hubscher.remy@gmail.com>2020-04-21 11:15:51 +0200
commitf0b40578adeca5e9fc75787c00787c20f1072144 (patch)
tree77398cee22227e863d94a33a6f44feb0d7e962ac /Makefile
parent5efb158938efadd663154458389549d5e2767d01 (diff)
downloadihatemoney-mirror-f0b40578adeca5e9fc75787c00787c20f1072144.zip
ihatemoney-mirror-f0b40578adeca5e9fc75787c00787c20f1072144.tar.gz
ihatemoney-mirror-f0b40578adeca5e9fc75787c00787c20f1072144.tar.bz2
Fix makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ae9e46c..d21a1cf 100644
--- a/Makefile
+++ b/Makefile
@@ -11,8 +11,8 @@ ZOPFLIPNG := zopflipng
.PHONY: all
all: install ## Alias for install
.PHONY: install
-install: setup.cfg $(INSTALL_STAMP) ## Install dependencies
-$(INSTALL_STAMP): virtualenv
+install: virtualenv setup.cfg $(INSTALL_STAMP) ## Install dependencies
+$(INSTALL_STAMP):
$(VENV)/bin/pip install -U pip
$(VENV)/bin/pip install -e .
touch $(INSTALL_STAMP)
@@ -23,7 +23,7 @@ $(PYTHON):
$(VIRTUALENV) $(VENV)
.PHONY: install-dev
-install-dev: setup.cfg $(INSTALL_STAMP) $(DEV_STAMP) ## Install development dependencies
+install-dev: virtualenv setup.cfg $(INSTALL_STAMP) $(DEV_STAMP) ## Install development dependencies
$(DEV_STAMP): $(PYTHON)
$(VENV)/bin/pip install -Ue .[dev]
touch $(DEV_STAMP)