diff options
author | Wolfgang Denk <wd@denx.de> | 2008-12-13 00:26:19 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-12-13 00:26:19 +0100 |
commit | f6704e49d6221fa650434e75faa5a3e2d7002f1b (patch) | |
tree | ea8c82808cf1bb8397d41b0c293c318d90c3cf9e /lib_sh/Makefile | |
parent | 8e9c63b40059e81b870685b54d99589152c5b750 (diff) | |
parent | d8bbc51c7ba9b737a20984333d19fe28a3526431 (diff) | |
download | u-boot-imx-f6704e49d6221fa650434e75faa5a3e2d7002f1b.zip u-boot-imx-f6704e49d6221fa650434e75faa5a3e2d7002f1b.tar.gz u-boot-imx-f6704e49d6221fa650434e75faa5a3e2d7002f1b.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-sh
Diffstat (limited to 'lib_sh/Makefile')
-rw-r--r-- | lib_sh/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib_sh/Makefile b/lib_sh/Makefile index 4034381..f7c6479 100644 --- a/lib_sh/Makefile +++ b/lib_sh/Makefile @@ -26,7 +26,11 @@ SOBJS-y += COBJS-y += board.o COBJS-y += bootm.o -# COBJS-y += time.o +ifeq ($(CONFIG_SH2),y) +COBJS-y += time_sh2.o +else +COBJS-y += time.o +endif SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |