aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
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