aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorUwe Hermann2010-12-30 02:57:44 +0100
committerUwe Hermann2010-12-30 02:57:44 +0100
commit8e5acecc6e170760d0edf95edb8f413385b2bf62 (patch)
tree458c31126734f5bc31a428de3004b49dca965849 /Makefile
parent7c53b252a35f5ac9a02216465bab26b059fffccc (diff)
More path and name changes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1103d37..f909705 100644
--- a/Makefile
+++ b/Makefile
@@ -36,12 +36,16 @@ all: build
build: lib examples
lib:
- @printf " BUILD lib\n"
+ @printf " BUILD lib/stm32\n"
$(Q)$(MAKE) -C lib/stm32 all
+ @printf " BUILD lib/lpc13xx\n"
+ $(Q)$(MAKE) -C lib/lpc13xx all
examples: lib
- @printf " BUILD examples\n"
+ @printf " BUILD examples/stm32\n"
$(Q)$(MAKE) -C examples/stm32 all
+ @printf " BUILD examples/lpc13xx\n"
+ $(Q)$(MAKE) -C examples/lpc13xx all
install: build
@printf " INSTALL headers\n"
@@ -59,6 +63,8 @@ install: build
clean:
$(Q)$(MAKE) -C examples/stm32 clean
$(Q)$(MAKE) -C lib/stm32 clean
+ $(Q)$(MAKE) -C examples/lpc13xx clean
+ $(Q)$(MAKE) -C lib/lpc13xx clean
.PHONY: build lib examples install clean