aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorUwe Hermann2010-03-05 22:35:29 +0100
committerUwe Hermann2010-03-05 22:35:29 +0100
commit46e5ed202a16f29775f06430c0ce8b1878121ed9 (patch)
treef83334bca253eca768f2cd3fb73c52dd5ed9a1c3 /examples/Makefile
parentf514162134115880a3d2626fc3d4cef3baf53874 (diff)
Add i2c_stts75_sensor example.
Thanks Thomas Otto <tommi@viadmin.org> for the patch!
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