Skip to content

Commit

Permalink
Makefiles: Support py/*.h includes per micropython#1022.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfalcon committed Dec 27, 2014
1 parent 8ab6f90 commit 3b74c91
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions bare-arm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ include ../py/py.mk
CROSS_COMPILE = arm-none-eabi-

INC = -I.
INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD)

Expand Down
1 change: 1 addition & 0 deletions qemu-arm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ include ../py/py.mk
CROSS_COMPILE = arm-none-eabi-

INC = -I.
INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD)

Expand Down
1 change: 1 addition & 0 deletions stmhal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ DEVICE=0483:df11
CROSS_COMPILE = arm-none-eabi-

INC = -I.
INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD)
INC += -I$(CMSIS_DIR)/inc
Expand Down
1 change: 1 addition & 0 deletions teensy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ 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$(PY_SRC)
INC += -I../stmhal
INC += -I$(BUILD)
Expand Down
1 change: 1 addition & 0 deletions unix-cpy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ PROG = cpy
include ../py/py.mk

INC = -I.
INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD)

Expand Down
1 change: 1 addition & 0 deletions unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ UNAME_S := $(shell uname -s)
include ../py/py.mk

INC = -I.
INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD)

Expand Down
1 change: 1 addition & 0 deletions windows/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ QSTR_DEFS = ../unix/qstrdefsport.h
include ../py/py.mk

INC = -I.
INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD)

Expand Down

0 comments on commit 3b74c91

Please sign in to comment.