aboutsummaryrefslogtreecommitdiff
path: root/esp8266/Makefile
diff options
context:
space:
mode:
authorDamien George2016-04-16 12:47:17 +0100
committerDamien George2016-04-16 13:20:02 +0100
commit73ccb3fc5b72d48d0b7370252f0d5126dedc5cba (patch)
treefc18b537c9625af8d71387a900e88bfb3a6b8428 /esp8266/Makefile
parent53e3770b153095f941b08f99eab59b1432ff406a (diff)
esp8266: Adapt port to use new auto-qstr generation.
Diffstat (limited to 'esp8266/Makefile')
-rw-r--r--esp8266/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile
index 81fa53e8d..c49fdd2c2 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -79,7 +79,7 @@ SRC_C = \
utils.c \
ets_alt_task.c \
$(BUILD)/frozen.c \
- fatfs_port.o \
+ fatfs_port.c \
STM_SRC_C = $(addprefix stmhal/,\
pybstdio.c \
@@ -87,7 +87,7 @@ STM_SRC_C = $(addprefix stmhal/,\
)
EXTMOD_SRC_C = $(addprefix extmod/,\
- modlwip.o \
+ modlwip.c \
)
LIB_SRC_C = $(addprefix lib/,\
@@ -131,6 +131,11 @@ OBJ += $(addprefix $(BUILD)/, $(EXTMOD_SRC_C:.c=.o))
OBJ += $(addprefix $(BUILD)/, $(LIB_SRC_C:.c=.o))
#OBJ += $(BUILD)/pins_$(BOARD).o
+# List of sources for qstr extraction
+SRC_QSTR += $(SRC_C) $(STM_SRC_C) $(EXTMOD_SRC_C)
+# Append any auto-generated sources that are needed by sources listed in SRC_QSTR
+SRC_QSTR_AUTO_DEPS +=
+
all: $(BUILD)/firmware-combined.bin
CONFVARS_FILE = $(BUILD)/confvars