view utils/Makefile @ 92:761650771e51

trau-parse AMR: print SID parameters
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 05 Mar 2025 02:26:11 +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}