aboutsummaryrefslogtreecommitdiff
path: root/teensy/Makefile
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-10-19 18:22:16 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-10-19 18:32:42 +0300
commite0f5df579b6cf0410b9693f9a75d9b50a0de350e (patch)
tree827369bd42736be5012f13066db935ac72f5141c /teensy/Makefile
parent8ee153f23429b63878d740168695cde3fb2a1497 (diff)
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 'teensy/Makefile')
-rw-r--r--teensy/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/Makefile b/teensy/Makefile
index 4e97cbc6a..dece6ce00 100644
--- a/teensy/Makefile
+++ b/teensy/Makefile
@@ -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