diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-05-17 00:58:36 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-06-23 00:10:03 +0200 |
commit | f54851a6e3844b7e01581b5a9681f294118b7529 (patch) | |
tree | e9da9bcd882e3e174bfd68165c99728d6e94f90c /board/armltd/integratorcp/Makefile | |
parent | 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1 (diff) | |
download | u-boot-imx-f54851a6e3844b7e01581b5a9681f294118b7529.zip u-boot-imx-f54851a6e3844b7e01581b5a9681f294118b7529.tar.gz u-boot-imx-f54851a6e3844b7e01581b5a9681f294118b7529.tar.bz2 |
integratorcp: split timer support
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: Peter Pearse <peter.pearse@arm.com>
Diffstat (limited to 'board/armltd/integratorcp/Makefile')
-rw-r--r-- | board/armltd/integratorcp/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/armltd/integratorcp/Makefile b/board/armltd/integratorcp/Makefile index 92a1a07..5e3c646 100644 --- a/board/armltd/integratorcp/Makefile +++ b/board/armltd/integratorcp/Makefile @@ -25,9 +25,12 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(BOARD).a -COBJS := integratorcp.o flash.o SOBJS := lowlevel_init.o +COBJS := integratorcp.o +COBJS += flash.o +COBJS += timer.o + SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) SOBJS := $(addprefix $(obj),$(SOBJS)) |