view libgsmfr2/Makefile @ 602:72cdae602d6e

libgsmhr1/dec_func.c: rm unused static functions In the original code, sp_dec.c held two kinds of functions: those needed only as part of the decoder, and those used by both decoder and encoder engines. In this library, we have moved the latter class of functions to dec_func.c module. Almost all static functions from the original sp_dec.c, with the exception of aToRc(), are needed only on sp_dec.c side of the new divide - remove them from dec_func.c, where they became dead code.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 04 Dec 2025 18:58:22 +0000
parents 5a3535470c95
children
line wrap: on
line source

OBJS=	add.o comfort_noise.o dec_main.o dec_wrap.o dhf.o ed_state.o \
	enc_homing.o enc_main.o enc_wrap.o full_dec.o full_dec_wrap.o \
	long_term.o lpc.o pack_frame.o pack_frame2.o pp_bad.o pp_good.o \
	pp_homing.o pp_state.o preprocess.o prng.o rpe.o short_term.o \
	sidclass.o silence_frame.o table.o tfo_dtxd.o tfo_main.o unpack_frame.o\
	unpack_frame2.o xmaxc_mean.o
HDRS=	ed_internal.h ed_state.h pp_internal.h pp_state.h tw_gsmfr.h typedef.h
LIB=	libgsmfr2.a

include ../config.defs

all:	${LIB}

${OBJS}:	${HDRS}

${LIB}:	${OBJS}
	ar rcu $@ ${OBJS}
	ranlib $@

install:
	mkdir -p ${DESTDIR}${includedir}
	install -c -m 444 tw_gsmfr.h ${DESTDIR}${includedir}
	mkdir -p ${DESTDIR}${libdir}
	install -c -m 444 ${LIB} ${DESTDIR}${libdir}

clean:
	rm -f *.[oa] errs