f269aa0060
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
21 lines
773 B
Makefile
21 lines
773 B
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
#
|
|
|
|
SETJMPLIB_DIR = $(ROOTDIR)/lib/libsetjmp
|
|
SETJMPLIB_SRC = $(call preprocess, $(SETJMPLIB_DIR)/SOURCES)
|
|
SETJMPLIB_OBJ := $(call c2obj, $(SETJMPLIB_SRC))
|
|
|
|
SETJMPLIB = $(BUILDDIR)/lib/libsetjmp.a
|
|
|
|
INCLUDES += -I$(SETJMPLIB_DIR)
|
|
OTHER_SRC += $(SETJMPLIB_SRC)
|
|
EXTRA_LIBS += $(SETJMPLIB)
|
|
|
|
$(SETJMPLIB): $(SETJMPLIB_OBJ)
|
|
$(SILENT)$(shell rm -f $@)
|
|
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
|