summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--esp8266/Makefile1
-rw-r--r--stmhal/Makefile1
-rw-r--r--unix/Makefile2
3 files changed, 1 insertions, 3 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile
index d86fec1808..65a513afd6 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -12,7 +12,6 @@ include ../py/py.mk
MPY_CROSS = ../mpy-cross/mpy-cross
MPY_TOOL = ../tools/mpy-tool.py
-MAKE_FROZEN = ../tools/make-frozen.py
FROZEN_DIR = scripts
FROZEN_MPY_DIR = modules
diff --git a/stmhal/Makefile b/stmhal/Makefile
index 7be0f28fe1..06be7acc89 100644
--- a/stmhal/Makefile
+++ b/stmhal/Makefile
@@ -276,7 +276,6 @@ all: $(BUILD)/firmware.dfu $(BUILD)/firmware.hex
ifneq ($(FROZEN_DIR),)
CFLAGS += -DMICROPY_MODULE_FROZEN_STR
OBJ += $(BUILD)/frozen-files.o
-MAKE_FROZEN = ../tools/make-frozen.py
$(BUILD)/frozen-files.o: $(BUILD)/frozen-files.c
$(call compile_c)
diff --git a/unix/Makefile b/unix/Makefile
index 4a313b3a80..53ff4cb487 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -273,7 +273,7 @@ coverage_test: coverage
gcov -o build-coverage/extmod ../extmod/*.c
$(BUILD)/_frozen_upip.c: $(BUILD)/frozen_upip/upip.py
- ../tools/make-frozen.py $(dir $^) > $@
+ $(MAKE_FROZEN) $(dir $^) > $@
# Select latest upip version available
UPIP_TARBALL := $(shell ls -1 -v ../tools/micropython-upip-*.tar.gz | tail -n1)