diff options
author | Damien George <damien.p.george@gmail.com> | 2017-06-20 15:20:09 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-06-20 15:20:09 +1000 |
commit | 101fc187f009b8af74467f880e544f466881e853 (patch) | |
tree | b582a6157cbd701cf7cc42d9b97813f8a9e332d5 | |
parent | 9ae0713cef470b2fe9c75cae77c136bda2b1672d (diff) | |
download | micropython-101fc187f009b8af74467f880e544f466881e853.tar.gz micropython-101fc187f009b8af74467f880e544f466881e853.zip |
esp8266/Makefile: Add LIB_SRC_C variable to qstr auto-extraction list.
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 96f8d504c2..3ae6b20729 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -147,7 +147,7 @@ OBJ += $(addprefix $(BUILD)/, $(DRIVERS_SRC_C:.c=.o)) #OBJ += $(BUILD)/pins_$(BOARD).o # List of sources for qstr extraction -SRC_QSTR += $(SRC_C) $(EXTMOD_SRC_C) $(DRIVERS_SRC_C) +SRC_QSTR += $(SRC_C) $(EXTMOD_SRC_C) $(LIB_SRC_C) $(DRIVERS_SRC_C) # Append any auto-generated sources that are needed by sources listed in SRC_QSTR SRC_QSTR_AUTO_DEPS += |