FreeCalypso > hg > gsm-codec-lib
view libgsmefr/Makefile @ 61:a18782a7d270
libgsmefr: d_gains.c compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 25 Nov 2022 20:19:30 +0000 |
parents | d273a77d5523 |
children | c87ccddf3fd1 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 OBJS= agc.o autocorr.o az_lsp.o basicop2.o c1035pf.o cod_12k2.o convolve.o \ d1035pf.o d_gains.o dec_create.o enc_create.o frame2params.o \ params2frame.o sid_class.o sid_insert.o tls_flags.o HDRS= basic_op.h cnst.h codec.h d_homing.h dec_state.h dtx.h e_homing.h \ enc_state.h gains_tb.h gsm_efr.h memops.h namespace.h no_count.h \ oper_32b.h sig_proc.h typedef.h vad.h LIB= libgsmefr.a INSTALL_PREFIX= /usr/local all: ${LIB} ${OBJS}: ${HDRS} ${LIB}: ${OBJS} ar rcu $@ ${OBJS} ranlib $@ install: # mkdir -p ${INSTALL_PREFIX}/include # install -c -m 444 gsm_efr.h ${INSTALL_PREFIX}/include # mkdir -p ${INSTALL_PREFIX}/lib # install -c -m 444 ${LIB} ${INSTALL_PREFIX}/lib clean: rm -f *.[oa] errs