From 792ae6b1bd7ec85f2ab8eec34dad1d22b05a213e Mon Sep 17 00:00:00 2001 From: Mohamed Tarek Date: Sun, 2 May 2010 17:19:42 +0000 Subject: - Factor out container specific code from apps/codecs/wma.c. - Create an independent asf packet-parsing library in apps/codecs/libasf. - Modify wma.c to use the newly created libasf. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25780 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libasf/libasf.make | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 apps/codecs/libasf/libasf.make (limited to 'apps/codecs/libasf/libasf.make') diff --git a/apps/codecs/libasf/libasf.make b/apps/codecs/libasf/libasf.make new file mode 100644 index 0000000000..31d80a33f8 --- /dev/null +++ b/apps/codecs/libasf/libasf.make @@ -0,0 +1,25 @@ +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id$ +# + +# libasf +ASFLIB := $(CODECDIR)/libasf.a +ASFLIB_SRC := $(call preprocess, $(APPSDIR)/codecs/libasf/SOURCES) +ASFLIB_OBJ := $(call c2obj, $(ASFLIB_SRC)) +OTHER_SRC += $(ASFLIB_SRC) + +$(ASFLIB): $(ASFLIB_OBJ) + $(SILENT)$(shell rm -f $@) + $(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null + +ASFFLAGS = $(filter-out -O%,$(CODECFLAGS)) +ASFFLAGS += -O3 + +$(CODECDIR)/libasf/%.o: $(ROOTDIR)/apps/codecs/libasf/%.c + $(SILENT)mkdir -p $(dir $@) + $(call PRINTS,CC $(subst $(ROOTDIR)/,,$<))$(CC) $(ASFFLAGS) -c $< -o $@ -- cgit v1.2.3