diff options
| author | Rémy HUBSCHER <hubscher.remy@gmail.com> | 2020-04-21 11:15:35 +0200 |
|---|---|---|
| committer | Rémy HUBSCHER <hubscher.remy@gmail.com> | 2020-04-21 11:15:51 +0200 |
| commit | f0b40578adeca5e9fc75787c00787c20f1072144 (patch) | |
| tree | 77398cee22227e863d94a33a6f44feb0d7e962ac | |
| parent | 5efb158938efadd663154458389549d5e2767d01 (diff) | |
| download | ihatemoney-mirror-f0b40578adeca5e9fc75787c00787c20f1072144.zip ihatemoney-mirror-f0b40578adeca5e9fc75787c00787c20f1072144.tar.gz ihatemoney-mirror-f0b40578adeca5e9fc75787c00787c20f1072144.tar.bz2 | |
Fix makefile
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |
