95e23defb0
Change-Id: Icc10d6e85f890c432f191233a4d64e09f00be43d Reviewed-on: http://gerrit.rockbox.org/456 Reviewed-by: Michael Sevakis <jethead71@rockbox.org> Tested-by: Michael Sevakis <jethead71@rockbox.org>
27 lines
1.1 KiB
Makefile
27 lines
1.1 KiB
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
|
|
# RBCODEC_BLD is defined in the calling Makefile
|
|
RBCODECLIB_DIR := $(ROOTDIR)/lib/rbcodec
|
|
RBCODECLIB_SRC := $(call preprocess, $(RBCODECLIB_DIR)/SOURCES, \
|
|
$(RBCODEC_CFLAGS) -imacros rbcodecconfig.h)
|
|
RBCODECLIB_OBJ := $(call c2obj, $(RBCODECLIB_SRC))
|
|
RBCODECLIB := $(BUILDDIR)/lib/librbcodec.a
|
|
|
|
INCLUDES += -I$(RBCODECLIB_DIR) -I$(RBCODECLIB_DIR)/codecs \
|
|
-I$(RBCODECLIB_DIR)/dsp -I$(RBCODECLIB_DIR)/metadata
|
|
OTHER_SRC += $(RBCODECLIB_SRC)
|
|
|
|
# libfixedpoint must go after in lib list but be made first
|
|
CORE_LIBS := $(RBCODECLIB) $(CORE_LIBS)
|
|
|
|
$(RBCODECLIB): $(RBCODECLIB_OBJ)
|
|
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
|
|
|
|
ifdef SOFTWARECODECS
|
|
include $(RBCODECLIB_DIR)/codecs/codecs.make
|
|
endif
|