view utils/Makefile @ 13:871e83f0cb76

utils: gen-hex-c utility written
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 07 Apr 2024 19:41:03 +0000
parents ringing/Makefile@db5772dac3c3
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}