1
0
Fork 0
forked from len0rd/rockbox

Extend rbspeex Makefile to allow easier building a universal binary needed for rbutil.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18103 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2008-07-20 15:47:47 +00:00
parent 903a048ddc
commit fd61460c45
2 changed files with 41 additions and 30 deletions

View file

@ -15,21 +15,12 @@ RCC_DIR = build/rcc
# add a custom rule for pre-building librbspeex
!mac {
rbspeex.commands = @$(MAKE) -C ../../tools/rbspeex librbspeex.a
QMAKE_EXTRA_TARGETS += rbspeex
PRE_TARGETDEPS += rbspeex
}
mac {
rbspeex0.commands = @$(MAKE) -C ../../tools/rbspeex clean
rbspeex1.commands = @$(MAKE) -C ../../tools/rbspeex ARCH=ppc librbspeexppc.a
rbspeex2.commands = @$(MAKE) -C ../../tools/rbspeex clean
rbspeex3.commands = @$(MAKE) -C ../../tools/rbspeex ARCH=i386 librbspeexi386.a
rbspeex4.commands = @$(MAKE) -C ../../tools/rbspeex universal
rbspeex2.depends = rbspeex1
rbspeex3.depends = rbspeex2
rbspeex4.depends = rbspeex3
QMAKE_EXTRA_TARGETS += rbspeex1 rbspeex2 rbspeex3 rbspeex4
PRE_TARGETDEPS += rbspeex1 rbspeex2 rbspeex4 rbspeex4
rbspeex.commands = @$(MAKE) -C ../../tools/rbspeex librbspeex-universal
}
QMAKE_EXTRA_TARGETS += rbspeex
PRE_TARGETDEPS += rbspeex
# rule for creating ctags file
tags.commands = ctags -R --c++-kinds=+p --fields=+iaS --extra=+q $(SOURCES)