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

This commit is contained in:
lantz
2021-01-04 18:51:54 -08:00
committed by GitHub
parent 942745e91f
commit 26c7c70024
+2 -2
View File
@@ -56,13 +56,13 @@ install-manpages: $(MANPAGES)
install -D -t $(MANDIR) $(MANPAGES) install -D -t $(MANDIR) $(MANPAGES)
install: install-mnexec install-manpages install: install-mnexec install-manpages
$(PYTHON) setup.py install $(PYTHON) -m pip install .
develop: $(MNEXEC) $(MANPAGES) develop: $(MNEXEC) $(MANPAGES)
# Perhaps we should link these as well # Perhaps we should link these as well
install $(MNEXEC) $(BINDIR) install $(MNEXEC) $(BINDIR)
install $(MANPAGES) $(MANDIR) install $(MANPAGES) $(MANDIR)
$(PYTHON) setup.py develop $(PYTHON) -m pip install -e . --no-binary
man: $(MANPAGES) man: $(MANPAGES)