Archived
14
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
asterisk/codecs/ilbc/Makefile
markster b92150994d Minor Makefile cleanups
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3675 f38db490-d61c-443f-a65b-d21fe96a405b
2004-08-29 17:40:58 +00:00

23 lines
515 B
Makefile
Executable file

ARCH=$(PROC)
CFLAGS+=-Wall -fPIC -O3 -funroll-loops -fomit-frame-pointer
LIB=libilbc.a
OBJS= anaFilter.o iCBSearch.o packing.o \
constants.o gainquant.o iLBC_decode.o StateConstructW.o \
createCB.o getCBvec.o iLBC_encode.o StateSearchW.o doCPLC.o \
helpfun.o syntFilter.o enhancer.o hpInput.o LPCdecode.o \
filter.o hpOutput.o LPCencode.o FrameClassify.o iCBConstruct.o lsf.o
all: $(LIB)
$(LIB): $(OBJS)
ar cr $(LIB) $(OBJS)
ranlib $(LIB)
clean:
rm -f $(LIB) *.o
install: