diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-17 18:03:27 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-17 18:03:27 +0100 |
commit | d553be5982722fc5ee5240fbfb15697849881ced (patch) | |
tree | 4312b491aaee255ed7d8dbffe74f79011de1c426 /bare-arm | |
parent | 2d1f865d16c5a7e27f5e46c96d087a7ff8a49012 (diff) | |
download | micropython-d553be5982722fc5ee5240fbfb15697849881ced.tar.gz micropython-d553be5982722fc5ee5240fbfb15697849881ced.zip |
build: Simplify build directory layout by putting all headers in genhdr.
Any generated headers go in $(BUILD)/genhdr/, and are #included as
'genhdr/xxx.h'.
Diffstat (limited to 'bare-arm')
-rw-r--r-- | bare-arm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bare-arm/Makefile b/bare-arm/Makefile index ace508ebd8..f9c9fb9a31 100644 --- a/bare-arm/Makefile +++ b/bare-arm/Makefile @@ -10,7 +10,7 @@ CROSS_COMPILE = arm-none-eabi- INC = -I. INC += -I$(PY_SRC) -INC += -I$(BUILD)/includes +INC += -I$(BUILD) CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mabi=aapcs-linux -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -fsingle-precision-constant -Wdouble-promotion CFLAGS = $(INC) -Wall -Werror -ansi -std=gnu99 $(CFLAGS_CORTEX_M4) $(COPT) |