view utils/Makefile @ 87:9cd468f6872c

trau-parse: AMR 5k90 CRC
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 04 Mar 2025 23:41:52 +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}