mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
Prevent unnecessary rebuilding of libs.
- When building for Rockbox Utility the called Makefiles would rebuild the libs every time. Change dependencies a bit to allow make to properly detect if the lib is already up to date. - Remove dependency on output folder in some cases to avoid unnecessary rebuilds. - Add standard Rockbox header to files lacking it. - Make make calls from qmake silent. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30608 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ccc5f4c4e1
commit
c7c657ca92
5 changed files with 66 additions and 47 deletions
|
|
@ -70,25 +70,25 @@ mac {
|
|||
# here. This assumes that QMAKE_CC will always be "gcc", maybe with a postfix.
|
||||
MYAR = $$replace(QMAKE_CC,gcc.*,ar)
|
||||
|
||||
rbspeex.commands = @$(MAKE) \
|
||||
rbspeex.commands = @$(MAKE) -s \
|
||||
TARGET_DIR=$$MYBUILDDIR -C $$RBBASE_DIR/tools/rbspeex \
|
||||
librbspeex$$RBLIBPOSTFIX \
|
||||
SYS_SPEEX=\"$$LIBSPEEX\" \
|
||||
CC=\"$$QMAKE_CC\" AR=\"$$MYAR\"
|
||||
libucl.commands = @$(MAKE) \
|
||||
libucl.commands = @$(MAKE) -s \
|
||||
TARGET_DIR=$$MYBUILDDIR -C $$RBBASE_DIR/tools/ucl/src \
|
||||
libucl$$RBLIBPOSTFIX \
|
||||
CC=\"$$QMAKE_CC\" AR=\"$$MYAR\"
|
||||
libmkamsboot.commands = @$(MAKE) \
|
||||
libmkamsboot.commands = @$(MAKE) -s \
|
||||
TARGET_DIR=$$MYBUILDDIR -C $$RBBASE_DIR/rbutil/mkamsboot \
|
||||
APPVERSION=\"rbutil\" \
|
||||
libmkamsboot$$RBLIBPOSTFIX \
|
||||
CC=\"$$QMAKE_CC\" AR=\"$$MYAR\"
|
||||
libmktccboot.commands = @$(MAKE) \
|
||||
libmktccboot.commands = @$(MAKE) -s \
|
||||
TARGET_DIR=$$MYBUILDDIR -C $$RBBASE_DIR/rbutil/mktccboot \
|
||||
libmktccboot$$RBLIBPOSTFIX \
|
||||
CC=\"$$QMAKE_CC\" AR=\"$$MYAR\"
|
||||
libmkmpioboot.commands = @$(MAKE) \
|
||||
libmkmpioboot.commands = @$(MAKE) -s \
|
||||
TARGET_DIR=$$MYBUILDDIR -C $$RBBASE_DIR/rbutil/mkmpioboot \
|
||||
APPVERSION=\"rbutil\" \
|
||||
libmkmpioboot$$RBLIBPOSTFIX \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue