view utils/Makefile @ 90:31e17dd64fc1

trau-parse AMR: invalidate saved mode if CRC1 is bad
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 05 Mar 2025 00:40:43 +0000
parents ffbbce856ac7
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	gen-hex-lines

all:	${PROGS}

gen-hex-lines:	gen-hex-lines.c
	${CC} ${CFLAGS} -o $@ $@.c

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