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:
parent
f91502f86a
commit
56822cacdf
1 changed files with 2 additions and 2 deletions
|
|
@ -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 $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue