aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/ilbc/Makefile
blob: edb3e63e17fdf58f2fb9d0b2475af3a43f205e9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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: