view frtest/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 b26df31124a4
children
line wrap: on
line source

PROGS=	gsmfr-cod2std gsmfr-decode gsmfr-decode-r gsmfr-decode-rb \
	gsmfr-decode-tw5 gsmfr-decode-tw5-r gsmfr-dlcap-gsmx gsmfr-dlcap-parse \
	gsmfr-dlcap-sync gsmfr-encode gsmfr-encode-r gsmfr-preproc \
	gsmfr-tfo-xfrm
LIBFR2=	../libgsmfr2/libgsmfr2.a
LIBTEST=../libtest/libtest.a

include ../config.defs

all:	${PROGS}

gsmfr-cod2std:	cod2std.o ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode:	decode.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-r:	decode-r.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-rb:	decode-rb.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-tw5:	decode-tw5.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-decode-tw5-r:	decode-tw5-r.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-dlcap-gsmx:	dlcap-gsmx.o tidsp.o ${LIBTEST}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-dlcap-parse:	dlcap-parse.o tidsp.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-dlcap-sync:	dlcap-sync.o sync-from-pcma.o sync-from-pcmu.o tidsp.o \
			${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-encode:	encode.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-encode-r:	encode-r.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-preproc:	preproc.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

gsmfr-tfo-xfrm:	tfo-xfrm.o ${LIBTEST} ${LIBFR2}
	${CC} ${CFLAGS} -o $@ $^

install:
	mkdir -p ${DESTDIR}${bindir}
	install -c ${PROGS} ${DESTDIR}${bindir}

clean:
	rm -f *.o *.out ${PROGS}