aboutsummaryrefslogtreecommitdiff
path: root/zephyr/Makefile
diff options
context:
space:
mode:
authorPaul Sokolovsky2016-09-17 21:15:58 +0300
committerPaul Sokolovsky2016-10-10 21:40:08 +0300
commit7e3b21ec54643281ec71ab192724684f2918067b (patch)
tree0938d5a9433a453c89fe7c565ea66bd7c21f649c /zephyr/Makefile
parentb3a65791b16dcc41281649a0a5faac4e8c00c8e3 (diff)
zephyr: Enable frozen modules support.
Diffstat (limited to 'zephyr/Makefile')
-rw-r--r--zephyr/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/zephyr/Makefile b/zephyr/Makefile
index d0dce488d..501fb0a31 100644
--- a/zephyr/Makefile
+++ b/zephyr/Makefile
@@ -15,6 +15,8 @@ BOARD ?= qemu_x86
# Zephyr 1.6.0
OUTDIR_PREFIX = $(BOARD)
+FROZEN_DIR = scripts
+
# Zephyr (generated) config files - must be defined before include below
Z_SYSGEN_H = outdir/$(OUTDIR_PREFIX)/misc/generated/sysgen/sysgen.h
Z_EXPORTS = outdir/$(OUTDIR_PREFIX)/Makefile.export
@@ -36,6 +38,7 @@ SRC_C = main.c \
lib/utils/printf.c \
lib/utils/pyexec.c \
lib/mp-readline/readline.c \
+ $(BUILD)/frozen.c \
$(SRC_MOD)
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o))