view trau-decode/Makefile @ 20:7cd046ffefe7

gsmx2tsrc: print input frame number comments on separate lines
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 23 Jun 2024 22:04:08 +0000
parents 0565aaa84b17
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	trau-extr trau-parse

all:	${PROGS}

trau-extr:	extr-fr.o extr-efr.o extr-main.o
	${CC} ${CFLAGS} -o $@ $^ -lgsmfr2

trau-parse:	crc8gen.o parse-fr.o parse-efr.o parse-main.o
	${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr

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