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..0f772e2 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 other lisa-m
stm32-h103:
@printf " BUILD examples/stm32-h103\n"
@@ -34,6 +34,10 @@ mb525:
@printf " BUILD examples/mb525\n"
$(Q)$(MAKE) -C mb525
+lisa-m:
+ @printf " BUILD examples/lisa-m\n"
+ $(Q)$(MAKE) -C lisa-m
+
other:
@printf " BUILD examples/other\n"
$(Q)$(MAKE) -C other
@@ -43,8 +47,10 @@ clean:
$(Q)$(MAKE) -C stm32-h103 clean
@printf " CLEAN examples/mb525\n"
$(Q)$(MAKE) -C mb525 clean
+ @printf " CLEAN examples/lisa-m\n"
+ $(Q)$(MAKE) -C lisa-m clean
@printf " CLEAN examples/other\n"
$(Q)$(MAKE) -C other clean
-.PHONY: stm32-h103 mb525 other clean
+.PHONY: stm32-h103 mb525 lisa-m other clean