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.
pull/1521/head
Paul Sokolovsky 2015-10-19 18:22:16 +03:00
rodzic 8ee153f234
commit e0f5df579b
10 zmienionych plików z 11 dodań i 9 usunięć

Wyświetl plik

@ -8,7 +8,7 @@ include ../py/py.mk
CROSS_COMPILE = arm-none-eabi-
INC = -I.
INC += -I.
INC += -I..
INC += -I$(BUILD)

Wyświetl plik

@ -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

Wyświetl plik

@ -12,7 +12,7 @@ ifeq ($(CROSS), 1)
CROSS_COMPILE = arm-none-eabi-
endif
INC = -I.
INC += -I.
INC += -I..
INC += -I../lib/mp-readline
INC += -I../stmhal

Wyświetl plik

@ -12,7 +12,7 @@ CROSS_COMPILE = $(XC16)/bin/xc16-
PARTFAMILY = dsPIC33F
PART = 33FJ256GP506
INC = -I.
INC += -I.
INC += -I..
INC += -I../lib/mp-readline
INC += -I../stmhal

Wyświetl plik

@ -10,6 +10,8 @@ PY_QSTR_DEFS = $(PY_SRC)/qstrdefs.h
# some code is performance bottleneck and compiled with other optimization options
CSUPEROPT = -O3
INC += -I../lib/netutils
ifeq ($(MICROPY_PY_USSL),1)
CFLAGS_MOD += -DMICROPY_PY_USSL=1 -I../lib/axtls/ssl -I../lib/axtls/crypto -I../lib/axtls/config
LDFLAGS_MOD += -L../lib/axtls/_stage -laxtls

Wyświetl plik

@ -9,7 +9,7 @@ include ../py/py.mk
CROSS_COMPILE = arm-none-eabi-
INC = -I.
INC += -I.
INC += -I..
INC += -I$(BUILD)
INC += -I../tools/tinytest/

Wyświetl plik

@ -32,7 +32,7 @@ DEVICE=0483:df11
CROSS_COMPILE = arm-none-eabi-
INC = -I.
INC += -I.
INC += -I..
INC += -I$(BUILD)
INC += -I$(CMSIS_DIR)/inc

Wyświetl plik

@ -29,7 +29,7 @@ endif
CFLAGS_TEENSY = -DF_CPU=96000000 -DUSB_SERIAL -D__MK20DX256__
CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mcpu=cortex-m4 -msoft-float -mfloat-abi=soft -fsingle-precision-constant -Wdouble-promotion $(CFLAGS_TEENSY)
INC = -I.
INC += -I.
INC += -I..
INC += -I../stmhal
INC += -I../lib/mp-readline

Wyświetl plik

@ -13,7 +13,7 @@ UNAME_S := $(shell uname -s)
# include py core make definitions
include ../py/py.mk
INC = -I.
INC += -I.
INC += -I..
INC += -I$(BUILD)

Wyświetl plik

@ -10,7 +10,7 @@ QSTR_DEFS = ../unix/qstrdefsport.h
# include py core make definitions
include ../py/py.mk
INC = -I.
INC += -I.
INC += -I..
INC += -I$(BUILD)