mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-12 00:47:49 -04:00
build system: unify/simplify library handling a bit.
libs in $ROOT/lib now add to $(CORE_LIBS) and $(EXTRA_LIBS) and are automatically linked by the core and codecs/plugins respectively. Change-Id: Iff482c792a8c8142718f6a16a450c6e2f1497c9a
This commit is contained in:
parent
9445d4625a
commit
f269aa0060
15 changed files with 79 additions and 90 deletions
|
|
@ -6,16 +6,16 @@
|
|||
# \/ \/ \/ \/ \/
|
||||
#
|
||||
|
||||
SETJMP_DIR = $(ROOTDIR)/lib/libsetjmp
|
||||
SETJMP_SRC = $(call preprocess, $(SETJMP_DIR)/SOURCES)
|
||||
SETJMP_OBJ := $(call c2obj, $(SETJMP_SRC))
|
||||
SETJMPLIB_DIR = $(ROOTDIR)/lib/libsetjmp
|
||||
SETJMPLIB_SRC = $(call preprocess, $(SETJMPLIB_DIR)/SOURCES)
|
||||
SETJMPLIB_OBJ := $(call c2obj, $(SETJMPLIB_SRC))
|
||||
|
||||
OTHER_SRC += $(SETJMP_SRC)
|
||||
SETJMPLIB = $(BUILDDIR)/lib/libsetjmp.a
|
||||
|
||||
LIBSETJMP = $(BUILDDIR)/lib/libsetjmp.a
|
||||
INCLUDES += -I$(SETJMPLIB_DIR)
|
||||
OTHER_SRC += $(SETJMPLIB_SRC)
|
||||
EXTRA_LIBS += $(SETJMPLIB)
|
||||
|
||||
INCLUDES += -I$(SETJMP_DIR)
|
||||
|
||||
$(LIBSETJMP): $(SETJMP_OBJ)
|
||||
$(SETJMPLIB): $(SETJMPLIB_OBJ)
|
||||
$(SILENT)$(shell rm -f $@)
|
||||
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue