mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
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
This commit is contained in:
parent
c3ca746de4
commit
cca6f747f8
3 changed files with 9 additions and 9 deletions
|
|
@ -40,14 +40,14 @@ $(OUT)/%.o: %.c
|
|||
|
||||
# some trickery to build ppc and i386 from a single call
|
||||
ifeq ($(RBARCH),)
|
||||
libucli386.a:
|
||||
$(TARGET_DIR)libucli386.a:
|
||||
make RBARCH=i386 TARGET_DIR=$(TARGET_DIR) libucli386.a
|
||||
|
||||
libuclppc.a:
|
||||
$(TARGET_DIR)libuclppc.a:
|
||||
make RBARCH=ppc TARGET_DIR=$(TARGET_DIR) libuclppc.a
|
||||
endif
|
||||
|
||||
libucl-universal: libucli386.a libuclppc.a
|
||||
libucl-universal: $(TARGET_DIR)libucli386.a $(TARGET_DIR)libuclppc.a
|
||||
@echo lipo $(TARGET_DIR)libucl.a
|
||||
$(SILENT) rm -f $(TARGET_DIR)libucl.a
|
||||
lipo -create $(TARGET_DIR)libuclppc.a $(TARGET_DIR)libucli386.a -output $(TARGET_DIR)libucl.a
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue