mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Version 0.1.1 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@139 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
37
codecs/mp3/Makefile
Executable file
37
codecs/mp3/Makefile
Executable file
@@ -0,0 +1,37 @@
|
||||
#
|
||||
# LMC section
|
||||
|
||||
CFLAGS+= -I../include -Iinclude -O6 -funroll-loops -finline-functions -Wall -Wno-missing-prototypes -Wno-missing-declarations -g
|
||||
RANLIB=ranlib
|
||||
|
||||
# the XING decoder objs and dependencies:
|
||||
# This is kinda nasty, since there's C, C++, and asm, oh my!
|
||||
# of course, each needs different compilation methods. grr.
|
||||
XINGOBJX86 = src/x86gas.o
|
||||
|
||||
XINGOBJS = src/cdct.o src/cupl3.o \
|
||||
src/hwin.o src/iup.o src/l3init.o \
|
||||
src/msis.o src/wavep.o src/csbt.o \
|
||||
src/cwinm.o src/icdct.o src/mdct.o \
|
||||
src/uph.o src/cup.o src/dec8.o \
|
||||
src/isbt.o src/l3dq.o src/mhead.o \
|
||||
src/upsf.o src/iwinm.o
|
||||
|
||||
LIBMP3=libmp3.a
|
||||
ARFLAGS=cr
|
||||
|
||||
XINGLMCOBJC += $(shell if uname -m | grep -q i.86; then echo src/x86gas.o; fi)
|
||||
|
||||
#assembly lang code, if we need it
|
||||
|
||||
XINGLMCOBJ = $(XINGOBJS)
|
||||
|
||||
all: $(LIBMP3)
|
||||
|
||||
$(LIBMP3): $(XINGOBJS)
|
||||
$(AR) $(ARFLAGS) $(LIBMP3) $(XINGLMCOBJ)
|
||||
$(RANLIB) $(LIBMP3)
|
||||
|
||||
clean:
|
||||
rm -f $(XINGOBJS)
|
||||
rm -f $(LIBMP3)
|
Reference in New Issue
Block a user