view utils/Makefile @ 49:2daadef1e70d

efr-sid OS#6538: more sensible 15-bit and 16-bit errors
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 12 Aug 2024 02:37:21 +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}