aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32/Makefile')
-rw-r--r--examples/stm32/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/examples/stm32/Makefile b/examples/stm32/Makefile
index a2c2eff..da49aa8 100644
--- a/examples/stm32/Makefile
+++ b/examples/stm32/Makefile
@@ -24,12 +24,16 @@ Q := @
MAKEFLAGS += --no-print-directory
endif
-all: stm32-h103 mb525 lisa-m obldc other
+all: stm32-h103 stm32-h107 mb525 lisa-m obldc other
stm32-h103:
@printf " BUILD examples/stm32/stm32-h103\n"
$(Q)$(MAKE) -C stm32-h103
+stm32-h107:
+ @printf " BUILD examples/stm32/stm32-h107\n"
+ $(Q)$(MAKE) -C stm32-h107
+
mb525:
@printf " BUILD examples/stm32/mb525\n"
$(Q)$(MAKE) -C mb525
@@ -49,6 +53,8 @@ obldc:
clean:
@printf " CLEAN examples/stm32/stm32-h103\n"
$(Q)$(MAKE) -C stm32-h103 clean
+ @printf " CLEAN examples/stm32/stm32-h107\n"
+ $(Q)$(MAKE) -C stm32-h107 clean
@printf " CLEAN examples/stm32/mb525\n"
$(Q)$(MAKE) -C mb525 clean
@printf " CLEAN examples/stm32/lisa-m\n"
@@ -58,5 +64,5 @@ clean:
@printf " CLEAN examples/stm32/obldc\n"
$(Q)$(MAKE) -C obldc clean
-.PHONY: stm32-h103 mb525 lisa-m other obldc clean
+.PHONY: stm32-h103 stm32-h107 mb525 lisa-m other obldc clean