diff options
author | Fabien Poussin <fabien.poussin@gmail.com> | 2015-08-20 18:20:46 +0200 |
---|---|---|
committer | Fabien Poussin <fabien.poussin@gmail.com> | 2015-08-20 18:20:46 +0200 |
commit | 586a8a2b29f1f01074a242b30198d8c638533a00 (patch) | |
tree | 667db4c54be523c534b703597b0a4982a78d7d8c /testhal/STM32/STM32F4xx/onewire/Makefile | |
parent | 48a03708ff6ed34e7b0576e2c2b36587e58779d8 (diff) | |
download | ChibiOS-Contrib-586a8a2b29f1f01074a242b30198d8c638533a00.tar.gz ChibiOS-Contrib-586a8a2b29f1f01074a242b30198d8c638533a00.tar.bz2 ChibiOS-Contrib-586a8a2b29f1f01074a242b30198d8c638533a00.zip |
Modified makefiles to incorporate changes
Diffstat (limited to 'testhal/STM32/STM32F4xx/onewire/Makefile')
-rw-r--r-- | testhal/STM32/STM32F4xx/onewire/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testhal/STM32/STM32F4xx/onewire/Makefile b/testhal/STM32/STM32F4xx/onewire/Makefile index c07981c..ab10921 100644 --- a/testhal/STM32/STM32F4xx/onewire/Makefile +++ b/testhal/STM32/STM32F4xx/onewire/Makefile @@ -80,12 +80,14 @@ 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)/os/common/ports/ARMCMx/compilers/GCC/mk/startup_stm32f4xx.mk
# HAL-OSAL files (optional).
-include $(CHIBIOS)/community/os/hal/hal.mk
-include $(CHIBIOS)/community/os/hal/ports/STM32/STM32F4xx/platform.mk
+include $(CHIBIOS_CONTRIB)/os/hal/hal.mk
+include $(CHIBIOS_CONTRIB)/os/hal/ports/STM32/STM32F4xx/platform.mk
include $(CHIBIOS)/os/hal/boards/ST_STM32F4_DISCOVERY/board.mk
include $(CHIBIOS)/os/hal/osal/rt/osal.mk
# RTOS files (optional).
|