diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-19 18:22:16 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-10-19 18:32:42 +0300 |
commit | e0f5df579b6cf0410b9693f9a75d9b50a0de350e (patch) | |
tree | 827369bd42736be5012f13066db935ac72f5141c /esp8266 | |
parent | 8ee153f23429b63878d740168695cde3fb2a1497 (diff) | |
download | micropython-e0f5df579b6cf0410b9693f9a75d9b50a0de350e.tar.gz micropython-e0f5df579b6cf0410b9693f9a75d9b50a0de350e.zip |
all: Make netutils.h available to all ports by default.
Generally, ports should inherit INC from py.mk, append to it, not
overwrite it. TODO: Likely should do the same for other vars too.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 7019335065..b06f6787a3 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -14,7 +14,7 @@ BAUD = 115200 CROSS_COMPILE = xtensa-lx106-elf- ESP_SDK = $(shell $(CC) -print-sysroot)/usr -INC = -I. +INC += -I. INC += -I.. INC += -I../stmhal INC += -I../lib/mp-readline |