diff options
| author | Thom Johansen <thomj@rockbox.org> | 2005-06-12 12:43:05 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2005-06-12 12:43:05 +0000 |
| commit | 649acec2fcebb16102d730af515f0ff94679fc1c (patch) | |
| tree | 682a52ce284ad06d2c903ba2b4f69c58ec078cea /apps/codecs/libmusepack/Makefile | |
| parent | 3c30ee51d89ac49ad0790889d554c760367e6ec9 (diff) | |
| download | rockbox-649acec2fcebb16102d730af515f0ff94679fc1c.zip rockbox-649acec2fcebb16102d730af515f0ff94679fc1c.tar.gz rockbox-649acec2fcebb16102d730af515f0ff94679fc1c.tar.bz2 rockbox-649acec2fcebb16102d730af515f0ff94679fc1c.tar.xz | |
Small Musepack optimisation.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6685 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmusepack/Makefile')
| -rw-r--r-- | apps/codecs/libmusepack/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/libmusepack/Makefile b/apps/codecs/libmusepack/Makefile index 1d7dffc..1e3eaf6 100644 --- a/apps/codecs/libmusepack/Makefile +++ b/apps/codecs/libmusepack/Makefile @@ -14,7 +14,8 @@ ifdef APPEXTRA INCLUDES += -I$(APPSDIR)/$(APPEXTRA) endif -CFLAGS = $(GCCOPTS) \ +MUSEPACKOPTS = -O2 +CFLAGS = $(GCCOPTS) $(MUSEPACKOPTS)\ $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) -DMEM=${MEMORYSIZE} # This sets up 'SRC' based on the files mentioned in SOURCES |