diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-02 23:38:50 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-02 23:38:50 +0200 |
commit | a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4 (patch) | |
tree | d01afe0202765ea80f5b260cf3df0a86ba0ce1fa /board/r2dplus | |
parent | 461fa68d20861811487944d22291db5a13410e20 (diff) | |
download | u-boot-imx-a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4.zip u-boot-imx-a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4.tar.gz u-boot-imx-a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4.tar.bz2 |
Cleanup: fix out-of-tree building for some boards
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/r2dplus')
-rw-r--r-- | board/r2dplus/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/board/r2dplus/Makefile b/board/r2dplus/Makefile index 2909d46..5b50987 100644 --- a/board/r2dplus/Makefile +++ b/board/r2dplus/Makefile @@ -19,11 +19,15 @@ # include $(TOPDIR)/config.mk -LIB = lib$(BOARD).a +LIB = $(obj)lib$(BOARD).a OBJS := r2dplus.o SOBJS := lowlevel_init.o +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) +SOBJS := $(addprefix $(obj),$(SOBJS)) + $(LIB): $(OBJS) $(SOBJS) $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) @@ -33,11 +37,11 @@ clean: distclean: clean rm -f $(LIB) core *.bak .depend -################################################################# +######################################################################### -.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) - $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ +# defines $(obj).depend target +include $(SRCTREE)/rules.mk --include .depend +sinclude $(obj).depend -################################################################# +######################################################################### |