view libgsmefr/Makefile @ 282:9ee8ad3d4d30

frtest: rm gsmfr-hand-test and gsmfr-max-out utils These hack programs were never properly documented and were written only as part of a debug chase, in pursuit of a bug that ultimately turned out to be in our then-hacky patch to osmo-bts-sysmo, before beginning of proper patches in Osmocom. These hack programs need to be dropped from the present sw package because they depend on old libgsm, and we are eliminating that dependency.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 14 Apr 2024 05:44:47 +0000
parents 0494279ae379
children 1c514150c033
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
OBJS=	agc.o autocorr.o az_lsp.o basicop2.o bfi_nodata.o c1035pf.o cod_12k2.o \
	convolve.o d1035pf.o d_gains.o d_homing.o d_plsf_5.o dec_12k2.o \
	dec_create.o dec_lag6.o dec_main.o dec_wrap.o dtx_common.o dtx_dec.o \
	dtx_enc.o e_homing.o enc_create.o enc_lag6.o enc_main.o enc_wrap.o \
	frame2params.o g_code.o g_pitch.o int_lpc.o inter_6.o inv_sqrt.o \
	lag_wind.o levinson.o log2.o lsp_az.o lsp_lsf.o oper_32b.o \
	params2frame.o pitch_f6.o pitch_ol.o pow2.o pre_proc.o pred_lt6.o \
	preemph.o pstfilt2.o q_gains.o q_plsf5_tab.o q_plsf_5.o reorder.o \
	residu.o sid_class.o sid_insert.o syn_filt.o tls_flags.o vad.o \
	weight_a.o
HDRS=	basic_op.h cnst.h codec.h d_homing.h dec_state.h dtx.h dtx_defs.h \
	e_homing.h enc_state.h gains_tb.h gsm_efr.h memops.h namespace.h \
	no_count.h oper_32b.h q_plsf5_tab.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