aboutsummaryrefslogtreecommitdiff
path: root/teensy
diff options
context:
space:
mode:
authorDamien George2014-04-17 18:03:27 +0100
committerDamien George2014-04-17 18:03:27 +0100
commitd553be5982722fc5ee5240fbfb15697849881ced (patch)
tree4312b491aaee255ed7d8dbffe74f79011de1c426 /teensy
parent2d1f865d16c5a7e27f5e46c96d087a7ff8a49012 (diff)
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 'teensy')
-rw-r--r--teensy/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/Makefile b/teensy/Makefile
index bd01f7e2b..00f351472 100644
--- a/teensy/Makefile
+++ b/teensy/Makefile
@@ -20,7 +20,7 @@ CFLAGS_CORTEX_M4 = -mthumb -mtune=cortex-m4 -mcpu=cortex-m4 -fsingle-precision-c
INC = -I.
INC += -I$(PY_SRC)
-INC += -I$(BUILD)/includes
+INC += -I$(BUILD)
INC += -I$(CORE_PATH)
CFLAGS = $(INC) -Wall -ansi -std=gnu99 $(CFLAGS_CORTEX_M4)