summaryrefslogtreecommitdiff
path: root/ucoo/hal/uart/test/Makefile
diff options
context:
space:
mode:
authorNicolas Schodet2015-06-03 13:46:44 +0200
committerNicolas Schodet2019-10-07 00:44:44 +0200
commit574480980dcffbfa7cd6dbe71e88253eb4c9feba (patch)
tree5f1c1261341a7c2a56de01d8c6d0815b164be8ba /ucoo/hal/uart/test/Makefile
parentd415a0646e874848cd06482c5d57916cca5cff4a (diff)
Rename ucoolib modules directory from ucoolib to ucoo
Diffstat (limited to 'ucoo/hal/uart/test/Makefile')
-rw-r--r--ucoo/hal/uart/test/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/ucoo/hal/uart/test/Makefile b/ucoo/hal/uart/test/Makefile
new file mode 100644
index 0000000..6989dd2
--- /dev/null
+++ b/ucoo/hal/uart/test/Makefile
@@ -0,0 +1,12 @@
+BASE = ../../../..
+
+TARGETS = host stm32f4
+PROGS = test_uart
+stm32f4_PROGS = test_uart_disc
+test_uart_SOURCES = test_uart.cc
+test_uart_disc_SOURCES = test_uart_disc.cc
+
+MODULES = hal/uart
+test_uart_disc_MODULES = $(MODULES) base/test hal/usb
+
+include $(BASE)/build/top.mk