view utils/Makefile @ 83:5e2ecfd45fc3 default tip

trau-parse: AMR 7k40 CRC
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 09 Feb 2025 03:22:47 +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}