Merge branch 'martinmm'.

This commit is contained in:
Uwe Hermann
2010-12-29 15:12:23 +01:00
35 changed files with 2727 additions and 185 deletions

View File

@@ -24,7 +24,7 @@ Q := @
MAKEFLAGS += --no-print-directory
endif
all: stm32-h103 mb525 obldc other
all: stm32-h103 mb525 lisa-m obldc other
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
@@ -47,10 +51,12 @@ 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
@printf " CLEAN examples/obldc\n"
$(Q)$(MAKE) -C obldc clean
.PHONY: stm32-h103 mb525 other obldc clean
.PHONY: stm32-h103 mb525 lisa-m other obldc clean