summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-06-15 18:45:18 +1000
committerDamien George <damien.p.george@gmail.com>2017-06-15 18:45:18 +1000
commit76ec04a6d93668806409b6f5b2788a4043fb7bb5 (patch)
treedbecbcdbacd0dae81a9469ed73d337e66dcd592e
parenta5609e1cf1a6200ad9c0294ffc4f69fb8195c518 (diff)
downloadmicropython-76ec04a6d93668806409b6f5b2788a4043fb7bb5.tar.gz
micropython-76ec04a6d93668806409b6f5b2788a4043fb7bb5.zip
esp8266/Makefile: Allow FROZEN_DIR,FROZEN_MPY_DIR to be overridden.
-rw-r--r--esp8266/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile
index 4e75ee667c..d234ce0227 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -8,8 +8,8 @@ MICROPY_SSL_AXTLS = 1
MICROPY_FATFS = 1
MICROPY_PY_BTREE = 1
-FROZEN_DIR = scripts
-FROZEN_MPY_DIR = modules
+FROZEN_DIR ?= scripts
+FROZEN_MPY_DIR ?= modules
# include py core make definitions
include ../py/py.mk