diff options
author | Magnus Holmgren <magnushol@gmail.com> | 2005-10-10 21:41:37 +0000 |
---|---|---|
committer | Magnus Holmgren <magnushol@gmail.com> | 2005-10-10 21:41:37 +0000 |
commit | f273f354eb0b29bd689feb8833eadf82f2e77c66 (patch) | |
tree | cc1141cda8f89ca64159e27a05989695e96eeb48 | |
parent | 07e375c3695ced16f9175b4d736c9bd05fa73dfd (diff) |
iRiver/Vorbis: And don't specify -O2 twice...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7616 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/codecs/Tremor/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/Tremor/Makefile b/apps/codecs/Tremor/Makefile index 15156afe23..d721d1c200 100644 --- a/apps/codecs/Tremor/Makefile +++ b/apps/codecs/Tremor/Makefile @@ -37,7 +37,7 @@ $(OUTPUT): $(OBJS) $(OBJDIR)/%.o: $(APPSDIR)/codecs/Tremor/%.c @echo "(Tremor) CC "`basename $<` - @$(CC) -c -O2 $(CFLAGS) -I$(APPSDIR)/codecs/Tremor/ $< -o $@ + @$(CC) -c $(CFLAGS) -I$(APPSDIR)/codecs/Tremor/ $< -o $@ include $(TOOLSDIR)/make.inc |