summaryrefslogtreecommitdiff
path: root/py/mkenv.mk
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2017-08-23 14:05:59 -0400
committerScott Shawcroft <scott@tannewt.org>2017-08-23 11:05:59 -0700
commit74cfdeb316420a3732370a5e19a6822c52395384 (patch)
tree8b719c40f2b52e5fe654d490e5ca4bdb4858717a /py/mkenv.mk
parent16ef611b0bd9e76583b0a7e761d8ac2e00c8ff6d (diff)
Added ability to freeze multiple directories; freeze neopixel library in cpx build (#199)
Reworked frozen module support: clean up makefiles and handle multiple directories. Modules to freeze are included as git submodules. Add neopixel to circuitplayground express build. Fixes #56
Diffstat (limited to 'py/mkenv.mk')
-rw-r--r--py/mkenv.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/py/mkenv.mk b/py/mkenv.mk
index e4381f1b2..5a118854a 100644
--- a/py/mkenv.mk
+++ b/py/mkenv.mk
@@ -42,12 +42,16 @@ endif
PY_SRC ?= $(TOP)/py
BUILD ?= build
-RM = rm
ECHO = @echo
+
+CD = cd
CP = cp
+FIND = find
MKDIR = mkdir
-SED = sed
PYTHON = python
+RM = rm
+RSYNC = rsync
+SED = sed
AS = $(CROSS_COMPILE)as
CC = $(CROSS_COMPILE)gcc