FreeCalypso > hg > gsm-codec-lib
view frtest/Makefile @ 510:5bf71b091323
libgsmhr1: add direct conversion from RTP input to decoder params
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 25 Aug 2024 02:19:37 +0000 |
parents | 285381a001fc |
children | f9eefb61fb2f |
line wrap: on
line source
PROGS= gsmfr-cod2std gsmfr-decode gsmfr-decode-r gsmfr-decode-rb \ gsmfr-dlcap-gsmx gsmfr-dlcap-parse gsmfr-dlcap-sync gsmfr-encode \ gsmfr-encode-r gsmfr-preproc 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-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 $@ $^ install: mkdir -p ${DESTDIR}${bindir} install -c ${PROGS} ${DESTDIR}${bindir} clean: rm -f *.o *.out ${PROGS}