From 6b462725392afdb74e52dedff2c329869baa3547 Mon Sep 17 00:00:00 2001 From: Dan Stromberg Date: Thu, 10 Jun 2021 12:42:08 -0700 Subject: [PATCH] Deleted, so this can work on windows without requiring the installation of a make tool --- Makefile | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 7ae08835..00000000 --- a/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX = ~/.micropython/lib - -all: - -# Installs all modules to a lib location, for development testing -CMD="find . -maxdepth 1 -mindepth 1 \( -name '*.py' -not -name 'test_*' -not -name 'setup.py' \) -or \( -type d -not -name 'dist' -not -name '*.egg-info' -not -name '__pycache__' \)| xargs --no-run-if-empty cp -r -t $(PREFIX)" -install: - @mkdir -p $(PREFIX) - @if [ -n "$(MOD)" ]; then \ - (cd $(MOD); sh -c $(CMD)); \ - else \ - for d in $$(find -maxdepth 1 -type d ! -name ".*"); do \ - echo $$d; \ - (cd $$d; sh -c $(CMD)); \ - done \ - fi