aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32/Makefile
diff options
context:
space:
mode:
authorDamjan Marion2011-01-26 21:14:54 +0100
committerUwe Hermann2011-01-30 22:18:25 +0100
commit7801cdf5a266d77a93495dc8aab28536d079cfa8 (patch)
tree707e9df46ff142f3da5d242d1ae21ee5676f3a4c /examples/stm32/Makefile
parentaac65d8560a59105cc02132860b77cfe61835b2e (diff)
Fancyblink example for Olimex STM32-H107 board.
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