b086458e4e
Centralize the selection of codec compilation flags to codec.make to avoid having to duplicate the per cpu selection logic and the build rule in the individual codec lib make files and make tweaking easier. The two special cases, libmad and libspeex were left alone. I plan to introduce a var for arm generation so that appropriate flags can be selected per generation as benchmarking results have shown that different arm arches might have different optimal flags. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30330 a1c6a512-1295-4272-9138-f99709370657
18 lines
708 B
Makefile
18 lines
708 B
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id: librm.make 20151 2009-03-01 09:04:15Z amiconn $
|
|
#
|
|
|
|
# librm
|
|
RMLIB := $(CODECDIR)/librm.a
|
|
RMLIB_SRC := $(call preprocess, $(APPSDIR)/codecs/librm/SOURCES)
|
|
RMLIB_OBJ := $(call c2obj, $(RMLIB_SRC))
|
|
OTHER_SRC += $(RMLIB_SRC)
|
|
|
|
$(RMLIB): $(RMLIB_OBJ)
|
|
$(SILENT)$(shell rm -f $@)
|
|
$(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null
|