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 9f26efa..6714bc9 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -25,7 +25,7 @@ ifneq ($(V),1)
Q := @
endif
-all: stm32-h103 mb525
+all: stm32-h103 mb525 other
stm32-h103:
@printf " BUILD examples/stm32-h103\n"
@@ -35,11 +35,17 @@ mb525:
@printf " BUILD examples/mb525\n"
$(Q)$(MAKE) -C mb525
+other:
+ @printf " BUILD examples/other\n"
+ $(Q)$(MAKE) -C other
+
clean:
@printf " CLEAN examples/stm32-h103\n"
$(Q)$(MAKE) -C stm32-h103 clean
@printf " CLEAN examples/mb525\n"
$(Q)$(MAKE) -C mb525 clean
+ @printf " CLEAN examples/other\n"
+ $(Q)$(MAKE) -C other clean
-.PHONY: stm32-h103 mb525 clean
+.PHONY: stm32-h103 mb525 other clean