summaryrefslogtreecommitdiff
path: root/ucoo/hal/spi
diff options
context:
space:
mode:
authorNicolas Schodet2015-05-15 12:05:06 +0200
committerNicolas Schodet2019-10-07 00:44:50 +0200
commit41fde87ed8d1fcd593777bdfae2fa9e65006d984 (patch)
tree48a82b5ba790741d1f0bcc97eb183ea4b045d7b0 /ucoo/hal/spi
parent751a7d2ba7a0fbb9c6dae2d91891f0cc74897a2a (diff)
build: add support for out of tree modules
Diffstat (limited to 'ucoo/hal/spi')
-rw-r--r--ucoo/hal/spi/Module2
-rw-r--r--ucoo/hal/spi/test/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/ucoo/hal/spi/Module b/ucoo/hal/spi/Module
index fe9737f..46a0fe2 100644
--- a/ucoo/hal/spi/Module
+++ b/ucoo/hal/spi/Module
@@ -1 +1 @@
-hal_spi_SOURCES := spi_soft.cc spi_hard.stm32.cc
+ucoo_hal_spi_SOURCES := spi_soft.cc spi_hard.stm32.cc
diff --git a/ucoo/hal/spi/test/Makefile b/ucoo/hal/spi/test/Makefile
index 76b8230..eb872a0 100644
--- a/ucoo/hal/spi/test/Makefile
+++ b/ucoo/hal/spi/test/Makefile
@@ -4,6 +4,6 @@ TARGETS = stm32f4
PROGS = test_spi
test_spi_SOURCES = test_spi.cc
-MODULES = hal/spi hal/gpio utils base/test hal/usb
+MODULES = ucoo/hal/spi ucoo/hal/gpio ucoo/utils ucoo/base/test ucoo/hal/usb
include $(BASE)/build/top.mk