view trau-ul-compile/Makefile @ 83:5e2ecfd45fc3 default tip

trau-parse: AMR 7k40 CRC
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 09 Feb 2025 03:22:47 +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}