diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2010-12-07 14:27:56 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2010-12-17 09:44:40 +0100 |
commit | d20b9991154241466802ceb17169dc8b5f7e58df (patch) | |
tree | 92aafe9d518bda3a100da14f953bc6406809f401 /board/xilinx/ppc405-generic/Makefile | |
parent | ac69243d83bf8c5762ffad640e2223acddd935b7 (diff) |
xilinx-ppc4xx-generic: Use common u-boot.lds
Use common ppc4xx linker script for xilinx ppc440 and ppc405 related boards.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/xilinx/ppc405-generic/Makefile')
-rw-r--r-- | board/xilinx/ppc405-generic/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/xilinx/ppc405-generic/Makefile b/board/xilinx/ppc405-generic/Makefile index 4b8e4f422f2..717ffc9c9f1 100644 --- a/board/xilinx/ppc405-generic/Makefile +++ b/board/xilinx/ppc405-generic/Makefile @@ -41,7 +41,9 @@ SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(COBJS)) SOBJS := $(addprefix $(obj),$(SOBJS)) -$(LIB): $(OBJS) $(SOBJS) +all: $(LIB) $(SOBJS) + +$(LIB): $(OBJS) $(call cmd_link_o_target, $^) clean: |