diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-10-25 13:11:08 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-10-25 13:11:08 +0300 |
commit | 760ed4629f0d10b3630d4932a981600093842382 (patch) | |
tree | 5443085cfef3080d5a5456c86d518df3b391f079 /unix | |
parent | d5cf8c5753f46e5df76bf9b5247fb93c50747e55 (diff) | |
download | micropython-760ed4629f0d10b3630d4932a981600093842382.tar.gz micropython-760ed4629f0d10b3630d4932a981600093842382.zip |
unix/Makefile: Remove references to deprecated pip-micropython.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/unix/Makefile b/unix/Makefile index 53ff4cb487..d5ad928b34 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -215,18 +215,14 @@ test: $(PROG) ../tests/run-tests TARGET = micropython PREFIX = $(DESTDIR)/usr/local BINDIR = $(PREFIX)/bin -PIPSRC = ../tools/pip-micropython -PIPTARGET = pip-micropython install: micropython install -d $(BINDIR) install $(TARGET) $(BINDIR)/$(TARGET) - install $(PIPSRC) $(BINDIR)/$(PIPTARGET) # uninstall micropython uninstall: -rm $(BINDIR)/$(TARGET) - -rm $(BINDIR)/$(PIPTARGET) # build synthetically fast interpreter for benchmarking fast: |