Skip to content

Commit

Permalink
Dev: Changed 'make install' to install zhmccli package as editable
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <andreas.r.maier@gmx.de>
  • Loading branch information
andy-maier committed Mar 19, 2018
1 parent 32fd7ba commit 06be95a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Expand Up @@ -260,11 +260,12 @@ pylint: pylint.log

.PHONY: install
install: _pip requirements.txt setup.py setup.cfg $(package_py_files)
@echo 'Installing runtime requirements with PACKAGE_LEVEL=$(PACKAGE_LEVEL)'
$(PIP_CMD) install $(pip_level_opts) -r requirements.txt .
@echo 'Installing $(package_name) (editable) with PACKAGE_LEVEL=$(PACKAGE_LEVEL)'
$(PIP_CMD) install $(pip_level_opts) -r requirements.txt
$(PIP_CMD) install -e .
which zhmc
zhmc --version
@echo 'Done: Installed $(package_name) into current Python environment.'
@echo 'Done: Installed $(package_name)'
@echo '$@ done.'

.PHONY: uninstall
Expand Down

0 comments on commit 06be95a

Please sign in to comment.