summaryrefslogtreecommitdiff
path: root/apps/codecs/liba52/Makefile
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-02-16 11:02:11 +0000
committerDave Chapman <dave@dchapman.com>2005-02-16 11:02:11 +0000
commit3bd167771d23edbfcf11ea4d5f0f75faf53af0c9 (patch)
tree8caa153a8c30654e7488cbc50eaa650e6c43fe72 /apps/codecs/liba52/Makefile
parent1f9610d43cefc10a1e47924ad65ce0f78c63bc66 (diff)
downloadrockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.zip
rockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.tar.gz
rockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.tar.bz2
rockbox-3bd167771d23edbfcf11ea4d5f0f75faf53af0c9.tar.xz
Initial import of the unmodified version of liba52-0.7.5-cvs, checked out of the Sourceforge CVS repository today.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5970 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/liba52/Makefile')
-rw-r--r--apps/codecs/liba52/Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/apps/codecs/liba52/Makefile b/apps/codecs/liba52/Makefile
new file mode 100644
index 0000000..53e6d24
--- /dev/null
+++ b/apps/codecs/liba52/Makefile
@@ -0,0 +1,47 @@
+# __________ __ ___.
+# Open \______ \ ____ ____ | | _\_ |__ _______ ___
+# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+# \/ \/ \/ \/ \/
+# $Id$
+#
+
+# ../.. for the plugin.h in the apps dir
+# .. for stuff in the plugins dir
+# . for stuff in the pluginlib dir
+INCLUDES=-I$(APPSDIR) -I.. -I. -I$(FIRMDIR)/include -I$(FIRMDIR)/export \
+ -I$(FIRMDIR)/common -I$(FIRMDIR)/drivers -I$(APPSDIR)/plugins/liba52/
+
+ifdef APPEXTRA
+INCLUDES += -I$(APPSDIR)/$(APPEXTRA)
+endif
+
+A52OPTS =
+CFLAGS = $(GCCOPTS) $(A52OPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DMEM=${MEMORYSIZE}
+
+SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) $(DEFINES) -E -P -include "config.h" - )
+SOURCES = $(SRC)
+OBJS := $(SRC:%.c=$(OBJDIR)/liba52/%.o)
+DEPFILE = $(OBJDIR)/dep-liba52
+DIRS =
+
+OUTPUT = $(OBJDIR)/liba52.a
+
+all: $(OUTPUT)
+
+$(OUTPUT): $(OBJS)
+ @echo "AR $@"
+ @$(AR) ruv $@ $+ >/dev/null 2>&1
+
+$(OBJDIR)/liba52/%.o: $(APPSDIR)/plugins/liba52/%.c
+ mkdir -p $(OBJDIR)/liba52
+ $(CC) -c -O2 $(CFLAGS) -I$(APPSDIR)/plugins/liba52/ $< -o $@
+
+include $(TOOLSDIR)/make.inc
+
+clean:
+ @echo "cleaning liba52"
+ @rm -f $(OBJS) $(OUTPUT) $(DEPFILE)
+
+-include $(DEPFILE)