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 9e4a396..8e3cd60 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -24,7 +24,7 @@ Q := @
MAKEFLAGS += --no-print-directory
endif
-all: stm32-h103 mb525 other
+all: stm32-h103 mb525 obldc other
stm32-h103:
@printf " BUILD examples/stm32-h103\n"
@@ -38,6 +38,10 @@ other:
@printf " BUILD examples/other\n"
$(Q)$(MAKE) -C other
+obldc:
+ @printf " BUILD examples/obldc\n"
+ $(Q)$(MAKE) -C obldc
+
clean:
@printf " CLEAN examples/stm32-h103\n"
$(Q)$(MAKE) -C stm32-h103 clean
@@ -45,6 +49,8 @@ clean:
$(Q)$(MAKE) -C mb525 clean
@printf " CLEAN examples/other\n"
$(Q)$(MAKE) -C other clean
+ @printf " CLEAN examples/obldc\n"
+ $(Q)$(MAKE) -C obldc clean
-.PHONY: stm32-h103 mb525 other clean
+.PHONY: stm32-h103 mb525 other obldc clean