Skip to content
Snippets Groups Projects
Unverified Commit 26c7c700 authored by lantz's avatar lantz Committed by GitHub
Browse files

use pip for make {install,develop} (#999)

parent 942745e9
No related branches found
No related tags found
No related merge requests found
......@@ -56,13 +56,13 @@ install-manpages: $(MANPAGES)
install -D -t $(MANDIR) $(MANPAGES)
install: install-mnexec install-manpages
$(PYTHON) setup.py install
$(PYTHON) -m pip install .
develop: $(MNEXEC) $(MANPAGES)
# Perhaps we should link these as well
install $(MNEXEC) $(BINDIR)
install $(MANPAGES) $(MANDIR)
$(PYTHON) setup.py develop
$(PYTHON) -m pip install -e . --no-binary
man: $(MANPAGES)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment