aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGareth McMullin2011-02-04 22:47:51 +1300
committerGareth McMullin2011-02-04 22:47:51 +1300
commit769a932f3ec147bddbf488a88214dfb12a4eed78 (patch)
tree52cb7feea948e40f2ee2ab4da3bbd26d730b3390 /Makefile
parent729a48c6557ec4ef4b0ec87f2de47010f8066ee8 (diff)
Added initial support for the LuminaryMicro LM3S family.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9b7fc55..718ecd4 100644
--- a/Makefile
+++ b/Makefile
@@ -40,14 +40,18 @@ lib:
$(Q)$(MAKE) -C lib/stm32 all
@printf " BUILD lib/lpc13xx\n"
$(Q)$(MAKE) -C lib/lpc13xx all
+ @printf " BUILD lib/lm3s\n"
+ $(Q)$(MAKE) -C lib/lm3s all
examples: lib
@printf " BUILD examples/stm32\n"
$(Q)$(MAKE) -C examples/stm32 all
@printf " BUILD examples/lpc13xx\n"
$(Q)$(MAKE) -C examples/lpc13xx all
+ @printf " BUILD examples/lm3s\n"
+ $(Q)$(MAKE) -C examples/lm3s all
-install: build
+install: lib
@printf " INSTALL headers\n"
$(Q)$(INSTALL) -d $(INCDIR)/libopencm3
$(Q)$(INSTALL) -d $(LIBDIR)
@@ -62,6 +66,8 @@ clean:
$(Q)$(MAKE) -C lib/stm32 clean
$(Q)$(MAKE) -C examples/lpc13xx clean
$(Q)$(MAKE) -C lib/lpc13xx clean
+ $(Q)$(MAKE) -C examples/lm3s clean
+ $(Q)$(MAKE) -C lib/lm3s clean
.PHONY: build lib examples install clean