view trau-decode/Makefile @ 2:b2ef2c80fef1

trau-parse: add FR decoding
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 24 May 2024 08:11:25 +0000
parents Makefile@131e0f1972bb
children d9c095357c32
line wrap: on
line source

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

all:	${PROGS}

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

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