From cca6f747f807105fd7a8e4834ebd73a5a996d8d2 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sat, 28 Nov 2009 22:39:00 +0000 Subject: Handle TARGET_DIR in universal library building. Building universal libraries needs to take TARGET_DIR into account as when set the individual libraries are placed into the build output folder and didn't got found anymore. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23778 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/mktccboot/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rbutil/mktccboot/Makefile') diff --git a/rbutil/mktccboot/Makefile b/rbutil/mktccboot/Makefile index 4d6e857952..14c184321c 100644 --- a/rbutil/mktccboot/Makefile +++ b/rbutil/mktccboot/Makefile @@ -72,14 +72,14 @@ $(OUTPUT): $(OBJS) $(EXTRADEPS) # some trickery to build ppc and i386 from a single call ifeq ($(RBARCH),) -libmktccbooti386.a: +$(TARGET_DIR)libmktccbooti386.a: make RBARCH=i386 TARGET_DIR=$(TARGET_DIR) libmktccbooti386.a -libmktccbootppc.a: +$(TARGET_DIR)libmktccbootppc.a: make RBARCH=ppc TARGET_DIR=$(TARGET_DIR) libmktccbootppc.a endif -libmktccboot-universal: libmktccbooti386.a libmktccbootppc.a +libmktccboot-universal: $(TARGET_DIR)libmktccbooti386.a $(TARGET_DIR)libmktccbootppc.a @echo lipo $(TARGET_DIR)libmktccboot.a $(SILENT) rm -f $(TARGET_DIR)libmktccboot.a lipo -create $(TARGET_DIR)libmktccbootppc.a $(TARGET_DIR)libmktccbooti386.a -output $(TARGET_DIR)libmktccboot.a -- cgit v1.2.3