diff options
author | Fabio Utzig <utzig@utzig.org> | 2016-04-24 18:10:31 -0300 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2016-04-24 18:10:31 -0300 |
commit | a59c04c5cf26f4cd84ee86860ed1f9894cb0c2b3 (patch) | |
tree | 68081aa2fca3aa3ad2b615916f12c7b55bd6ccc0 /testhal/KINETIS/TEENSY_LC/BOOTLOADER/Makefile | |
parent | 38acc79534b8a3c9268f637f47797c4a1328db9d (diff) | |
parent | 39e3a31d9438fe5a9f058c54747b737d53d7e86e (diff) | |
download | ChibiOS-Contrib-a59c04c5cf26f4cd84ee86860ed1f9894cb0c2b3.tar.gz ChibiOS-Contrib-a59c04c5cf26f4cd84ee86860ed1f9894cb0c2b3.tar.bz2 ChibiOS-Contrib-a59c04c5cf26f4cd84ee86860ed1f9894cb0c2b3.zip |
Merge pull request #60 from flabbergast/kinetis-mk
Update kinetis makefiles (license, asm, m0->m0plus, shell.mk).
Diffstat (limited to 'testhal/KINETIS/TEENSY_LC/BOOTLOADER/Makefile')
-rw-r--r-- | testhal/KINETIS/TEENSY_LC/BOOTLOADER/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testhal/KINETIS/TEENSY_LC/BOOTLOADER/Makefile b/testhal/KINETIS/TEENSY_LC/BOOTLOADER/Makefile index 7a3b78a..f868337 100644 --- a/testhal/KINETIS/TEENSY_LC/BOOTLOADER/Makefile +++ b/testhal/KINETIS/TEENSY_LC/BOOTLOADER/Makefile @@ -134,9 +134,11 @@ TCSRC = TCPPSRC = # List ASM source files here -ASMSRC = $(STARTUPASM) $(PORTASM) $(OSALASM) +ASMSRC = +ASMXSRC = $(STARTUPASM) $(PORTASM) $(OSALASM) -INCDIR = $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \ +INCDIR = $(CHIBIOS)/os/license \ + $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \ $(HALINC) $(PLATFORMINC) $(BOARDINC) \ $(CHIBIOS)/os/various @@ -148,7 +150,7 @@ INCDIR = $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \ # Compiler settings # -MCU = cortex-m0 +MCU = cortex-m0plus #TRGT = arm-elf- TRGT = arm-none-eabi- |