1
0
Fork 0
forked from len0rd/rockbox

Remove an unneeded -iquote (which caused problems with pre 4.0.0 versions of gcc) and replace a gcc with $(CC)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15644 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-11-16 19:53:47 +00:00
parent f91502f86a
commit 56822cacdf

View file

@ -13,7 +13,7 @@ endif
SPEEXSRC = ../../apps/codecs/libspeex
INCLUDES = -I $(SPEEXSRC) -iquote $(SPEEXSRC)
INCLUDES = -I $(SPEEXSRC)
SPEEXOPTS = -DHAVE_CONFIG_H -DROCKBOX_VOICE_ENCODER
CFLAGS = $(SPEEXOPTS) $(INCLUDES) -O3 -fomit-frame-pointer -Wno-unused-parameter
@ -45,7 +45,7 @@ $(DEPFILE): $(SOURCES)
echo "oo" > /dev/null )
../rbspeexenc: $(OBJS) $(DEPFILE)
gcc -o ../rbspeexenc $(OBJS) -lm
$(CC) -o ../rbspeexenc $(OBJS) -lm
%.o:
$(CC) $(CFLAGS) -c $< -o $@