public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] Fix out of tree building issue
@ 2008-03-26 20:05 Anatolij Gustschin
  2008-03-26 23:19 ` Wolfgang Denk
  0 siblings, 1 reply; 2+ messages in thread
From: Anatolij Gustschin @ 2008-03-26 20:05 UTC (permalink / raw)
  To: u-boot

Currently U-Boot building in some external directory
doesn't work. This patch tries to fix the problem.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
---
 tools/Makefile |   20 +++++++++++++-------
 1 files changed, 13 insertions(+), 7 deletions(-)

diff --git a/tools/Makefile b/tools/Makefile
index 9f0dedf..8784a6d 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -37,7 +37,7 @@ endif
 #OBJ_FILES	+= mpc86x_clk.o
 #endif
 
-LIBFDT_OBJ_FILES	= fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_wip.o
+LIBFDT_OBJ_FILES	= $(obj)fdt.o $(obj)fdt_ro.o $(obj)fdt_rw.o $(obj)fdt_strerror.o $(obj)fdt_wip.o
 
 LOGO_H	= $(OBJTREE)/include/bmp_logo.h
 
@@ -251,24 +251,30 @@ $(obj)sha1.c:
 $(obj)image.c:
 		@rm -f $(obj)image.c
 		ln -s $(src)../common/image.c $(obj)image.c
-
-$(obj)fdt.c:	libfdt_internal.h
+		if [ ! -f $(obj)mkimage.h ] ; then \
+			ln -s $(src)../tools/mkimage.h $(obj)mkimage.h; \
+		fi
+		if [ ! -f $(obj)fdt_host.h ] ; then \
+			ln -s $(src)../tools/fdt_host.h $(obj)fdt_host.h; \
+		fi
+
+$(obj)fdt.c:	$(obj)libfdt_internal.h
 		@rm -f $(obj)fdt.c
 		ln -s $(src)../libfdt/fdt.c $(obj)fdt.c
 
-$(obj)fdt_ro.c:	libfdt_internal.h
+$(obj)fdt_ro.c:	$(obj)libfdt_internal.h
 		@rm -f $(obj)fdt_ro.c
 		ln -s $(src)../libfdt/fdt_ro.c $(obj)fdt_ro.c
 
-$(obj)fdt_rw.c:	libfdt_internal.h
+$(obj)fdt_rw.c:	$(obj)libfdt_internal.h
 		@rm -f $(obj)fdt_rw.c
 		ln -s $(src)../libfdt/fdt_rw.c $(obj)fdt_rw.c
 
-$(obj)fdt_strerror.c:	libfdt_internal.h
+$(obj)fdt_strerror.c:	$(obj)libfdt_internal.h
 		@rm -f $(obj)fdt_strerror.c
 		ln -s $(src)../libfdt/fdt_strerror.c $(obj)fdt_strerror.c
 
-$(obj)fdt_wip.c:	libfdt_internal.h
+$(obj)fdt_wip.c:	$(obj)libfdt_internal.h
 		@rm -f $(obj)fdt_wip.c
 		ln -s $(src)../libfdt/fdt_wip.c $(obj)fdt_wip.c
 
-- 
1.5.3.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot-Users] [PATCH] Fix out of tree building issue
  2008-03-26 20:05 [U-Boot-Users] [PATCH] Fix out of tree building issue Anatolij Gustschin
@ 2008-03-26 23:19 ` Wolfgang Denk
  0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Denk @ 2008-03-26 23:19 UTC (permalink / raw)
  To: u-boot

In message <47EAAC97.3020207@denx.de> you wrote:
> Currently U-Boot building in some external directory
> doesn't work. This patch tries to fix the problem.
> 
> Signed-off-by: Anatolij Gustschin <agust@denx.de>

Applied. Thanks again, Anatolij!

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"An open mind has but one disadvantage: it collects dirt."
                                                    - a saying at RPI

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-03-26 23:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-26 20:05 [U-Boot-Users] [PATCH] Fix out of tree building issue Anatolij Gustschin
2008-03-26 23:19 ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox