mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-03 20:38:59 +00:00 
			
		
		
		
	git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87467 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			22 lines
		
	
	
		
			548 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			548 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
LIB=libilbc.a
 | 
						|
CFLAGS+=-fPIC
 | 
						|
 | 
						|
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
 | 
						|
 | 
						|
include $(ASTTOPDIR)/Makefile.rules
 | 
						|
 | 
						|
all: $(LIB)
 | 
						|
 | 
						|
$(LIB): $(OBJS)
 | 
						|
	$(ECHO_PREFIX) echo "   [AR] $^ -> $@"
 | 
						|
	$(CMD_PREFIX) $(AR) cr $@ $^
 | 
						|
	$(CMD_PREFIX) $(RANLIB) $@
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f $(LIB) *.o .*.d
 | 
						|
	rm -f *.s *.i
 |