aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorPiotr Esden-Tempski2010-01-22 13:00:13 +0100
committerPiotr Esden-Tempski2010-01-25 17:22:11 +0100
commit699ec0fb1538a0333d1d0da60ad3206bfc4f7f1c (patch)
treeb7d69a453074552c214c12713306c813a9e54f31 /examples/Makefile
parent3a4f36d80f2a8fd93727fc6d024b48f0a7511c9f (diff)
Added fancyblink example for the MB525 eval board.
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 4defad2..322cc99 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -25,15 +25,21 @@ ifneq ($(V),1)
Q := @
endif
-all: STM32-H103
+all: STM32-H103 MB525
STM32-H103:
@printf " BUILD STM32-H103 examples\n"
$(Q)$(MAKE) -C STM32-H103
+MB525:
+ @printf " BUILD MB525 examples\n"
+ $(Q)$(MAKE) -C MB525
+
clean:
@printf " CLEAN STM32-H103 examples\n"
$(Q)$(MAKE) -C STM32-H103 clean
+ @printf " CLEAN MB525 examples\n"
+ $(Q)$(MAKE) -C MB525 clean
-.PHONY: STM32-H103 clean
+.PHONY: STM32-H103 MB525 clean