view utils/Makefile @ 30:760bbae44c1f

pcma2efr: emit the set of computed frames
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 13 May 2024 05:40:56 +0000
parents 871e83f0cb76
children 914eeb3ab866
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	gen-hex-c

all:	${PROG}

${PROG}:	${PROG}.c
	${CC} ${CFLAGS} -o $@ $@.c

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