diff options
author | Keith Packard <keithp@keithp.com> | 2017-02-20 12:16:27 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-02-20 12:34:02 -0800 |
commit | 0eadc2d50417408beebd50e4a0e7e12430ed67ef (patch) | |
tree | 51c4e4031107ea34eef7c05096bc445cb305bd02 | |
parent | c296acd643698d0128e2f58f91a9cfeea63f580a (diff) |
altos/stm: Add draw and lisp to make search paths.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/stm/Makefile.defs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stm/Makefile.defs b/src/stm/Makefile.defs index 0ba86f5a..66ed4be8 100644 --- a/src/stm/Makefile.defs +++ b/src/stm/Makefile.defs @@ -1,4 +1,4 @@ -vpath % ../stm:../product:../drivers:../kernel:../util:../kalman:../aes:../math:.. +vpath % ../stm:../product:../drivers:../kernel:../util:../kalman:../aes:../math:../draw:../lisp:.. vpath make-altitude ../util vpath make-kalman ../util vpath kalman.5c ../kalman @@ -26,7 +26,7 @@ LIBS=$(PDCLIB_LIBS_M3) -lgcc WARN_FLAGS=-Wall -Wextra -Werror -AO_CFLAGS=-I. -I../stm -I../kernel -I../drivers -I../math -I.. $(PDCLIB_INCLUDES) +AO_CFLAGS=-I. -I../stm -I../kernel -I../drivers -I../math -I../draw -I../lisp -I.. $(PDCLIB_INCLUDES) STM_CFLAGS=-std=gnu99 -mlittle-endian -mcpu=cortex-m3 -mthumb -Wcast-align \ -ffreestanding -nostdlib $(AO_CFLAGS) $(WARN_FLAGS) |