view utils/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 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}