diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-08-22 19:50:22 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-08-23 22:25:05 +0200 |
commit | 2ed0869d30602eb660569eababb8fedff36bd23a (patch) | |
tree | 2c21c6a65f8818d72b4d1fa5e049f6e31a4114dc /lib_blackfin/Makefile | |
parent | 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e (diff) | |
download | u-boot-2ed0869d30602eb660569eababb8fedff36bd23a.tar.gz u-boot-2ed0869d30602eb660569eababb8fedff36bd23a.tar.xz u-boot-2ed0869d30602eb660569eababb8fedff36bd23a.zip |
Blackfin: use common code to preprocess linker script
Now that the common code preprocesses the linker script, the Blackfin code
no longer needs to do it.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib_blackfin/Makefile')
-rw-r--r-- | lib_blackfin/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib_blackfin/Makefile b/lib_blackfin/Makefile index 4bdf6d34ce..cbf47f0129 100644 --- a/lib_blackfin/Makefile +++ b/lib_blackfin/Makefile @@ -48,12 +48,9 @@ COBJS-y += string.o SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) -$(LIB): $(obj).depend $(OBJS) $(obj)u-boot.lds +$(LIB): $(obj).depend $(OBJS) $(AR) $(ARFLAGS) $@ $(OBJS) -$(obj)u-boot.lds: u-boot.lds.S - $(CPP) $(CPPFLAGS) -D__ASSEMBLY__ -P $^ > $@ - ######################################################################### # defines $(obj).depend target |