We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77046ca commit 955b172Copy full SHA for 955b172
Makefile
@@ -0,0 +1,10 @@
1
+PREFIX = ~/.micropython/lib
2
+
3
+all:
4
5
+# Installs all modules to a lib location, for development testing
6
+install:
7
+ mkdir -p $(PREFIX)
8
+ for d in $$(find -maxdepth 1 -type d ! -name ".*"); do \
9
+ (cd $$d; cp -r $$(find . -name "*.py") $(PREFIX)); \
10
+ done \
0 commit comments