From db63660c19c9080d040ad48a5fb2a2ab233b7ede Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 26 Aug 2014 16:03:57 +0100 Subject: Add pip-micropython to unix make install. Also add -t/--target option to pip-micropython to allowing installing to the pyboard. Thanks to turbinenreiter/Sebastian Plamauer for the patch. --- unix/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'unix') diff --git a/unix/Makefile b/unix/Makefile index e5e8ff64a..ed79121c6 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -106,10 +106,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 $(TARGET) $(BINDIR)/$(TARGET) + install -D $(PIPSRC) $(BINDIR)/$(PIPTARGET) # uninstall micropython uninstall: -rm $(BINDIR)/$(TARGET) + -rm $(BINDIR)/$(PIPTARGET) -- cgit v1.2.3