view frtest/Makefile @ 488:6724fbb01a09 default tip

PACKAGING: grammar fix
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 20 May 2024 22:02:36 +0000
parents 285381a001fc
children
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}