view trau-ul-compile/Makefile @ 93:fa80ce9b076c default tip

trau-parse AMR: check spare bits and report not-all-1s
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 05 Mar 2025 02:56:24 +0000
parents f80e64139670
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	trau-ul-compile trau-ul-decomp

all:	${PROGS}

trau-ul-compile:	trau-ul-compile.c
	${CC} ${CFLAGS} -o $@ $@.c -lgsmfr2 -lgsmefr

trau-ul-decomp:	trau-ul-decomp.c
	${CC} ${CFLAGS} -o $@ $@.c -lgsmfr2 -lgsmefr

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