Added obldc board led test program.

This commit is contained in:
Piotr Esden-Tempski
2010-12-17 23:23:10 +01:00
parent 58e36dab2d
commit 5e76fe66b7
5 changed files with 169 additions and 2 deletions

View File

@@ -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