diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2016-04-28 23:10:46 +0200 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2016-04-28 23:10:46 +0200 |
commit | 99230d289cc3f1a42c3027240bcf71002d67cd72 (patch) | |
tree | c535adf5f4225334f335846cbce62f2250dde030 /testhal/TIVA/TM4C123x/I2C/Makefile | |
parent | 277989a04854b32f57c710b3c42d2ab376e838be (diff) | |
download | ChibiOS-Contrib-99230d289cc3f1a42c3027240bcf71002d67cd72.tar.gz ChibiOS-Contrib-99230d289cc3f1a42c3027240bcf71002d67cd72.tar.bz2 ChibiOS-Contrib-99230d289cc3f1a42c3027240bcf71002d67cd72.zip |
Tiva. Updated Tiva makefiles to be compatible with the main repository.
Diffstat (limited to 'testhal/TIVA/TM4C123x/I2C/Makefile')
-rw-r--r-- | testhal/TIVA/TM4C123x/I2C/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/testhal/TIVA/TM4C123x/I2C/Makefile b/testhal/TIVA/TM4C123x/I2C/Makefile index f7c3573..32abbee 100644 --- a/testhal/TIVA/TM4C123x/I2C/Makefile +++ b/testhal/TIVA/TM4C123x/I2C/Makefile @@ -93,6 +93,7 @@ include $(CHIBIOS)/os/hal/osal/rt/osal.mk include $(CHIBIOS)/os/rt/rt.mk include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk # Other files (optional). +include $(CHIBIOS)/os/hal/lib/streams/streams.mk # Define linker script file here LDSCRIPT= $(STARTUPLD)/TM4C123xH6.ld @@ -107,7 +108,7 @@ CSRC = $(STARTUPSRC) \ $(PLATFORMSRC) \ $(BOARDSRC) \ $(TESTSRC) \ - $(CHIBIOS)/os/hal/lib/streams/chprintf.c \ + $(STREAMSSRC) \ main.c # C++ sources that can be compiled in ARM or THUMB mode depending on the global @@ -135,11 +136,13 @@ 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) $(TESTINC) \ - $(CHIBIOS)/os/various $(CHIBIOS)/os/hal/lib/streams + $(STREAMSINC) $(CHIBIOS)/os/various # # Project, sources and paths |