aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/TIVA/TM4C123x/PWM/Makefile
diff options
context:
space:
mode:
authorUladzimir Pylinski <barthess@yandex.ru>2015-08-24 15:19:16 +0300
committerUladzimir Pylinski <barthess@yandex.ru>2015-08-24 15:19:16 +0300
commit1baa777a7e3218c15ca6782fd9174abcec4e3f9e (patch)
treedf8ae63ebded9eeab9fc816c02f713ea25b78d3b /testhal/TIVA/TM4C123x/PWM/Makefile
parente3d91636280ab201b5ad56741a43ef7c22069700 (diff)
parent586a8a2b29f1f01074a242b30198d8c638533a00 (diff)
downloadChibiOS-Contrib-1baa777a7e3218c15ca6782fd9174abcec4e3f9e.tar.gz
ChibiOS-Contrib-1baa777a7e3218c15ca6782fd9174abcec4e3f9e.tar.bz2
ChibiOS-Contrib-1baa777a7e3218c15ca6782fd9174abcec4e3f9e.zip
Merge pull request #23 from fpoussin/master
Makefile paths rework
Diffstat (limited to 'testhal/TIVA/TM4C123x/PWM/Makefile')
-rw-r--r--testhal/TIVA/TM4C123x/PWM/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/testhal/TIVA/TM4C123x/PWM/Makefile b/testhal/TIVA/TM4C123x/PWM/Makefile
index 43de29b..54c0c2a 100644
--- a/testhal/TIVA/TM4C123x/PWM/Makefile
+++ b/testhal/TIVA/TM4C123x/PWM/Makefile
@@ -80,13 +80,15 @@ endif
PROJECT = ch
# Imported source files and paths
-CHIBIOS = ../../../../..
+CHIBIOS = ../../../../../ChibiOS-RT
+CHIBIOS_CONTRIB = $(CHIBIOS)/../ChibiOS-Contrib/ChibiOS-RT
+CHIBIOS_CONTRIB = $(CHIBIOS)/../ChibiOS-Contrib
# Startup files.
-include $(CHIBIOS)/community/os/common/ports/ARMCMx/compilers/GCC/mk/startup_tm4c123x.mk
+include $(CHIBIOS_CONTRIB)/os/common/ports/ARMCMx/compilers/GCC/mk/startup_tm4c123x.mk
# HAL-OSAL files (optional).
include $(CHIBIOS)/os/hal/hal.mk
-include $(CHIBIOS)/community/os/hal/ports/TIVA/TM4C123x/platform.mk
-include $(CHIBIOS)/community/os/hal/boards/TI_TM4C123G_LAUNCHPAD/board.mk
+include $(CHIBIOS_CONTRIB)/os/hal/ports/TIVA/TM4C123x/platform.mk
+include $(CHIBIOS_CONTRIB)/os/hal/boards/TI_TM4C123G_LAUNCHPAD/board.mk
include $(CHIBIOS)/os/hal/osal/rt/osal.mk
# RTOS files (optional).
include $(CHIBIOS)/os/rt/rt.mk