view utils/Makefile @ 62:6519e5c4b3f3

top Makefile: add utils
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 25 Sep 2024 18:48:58 +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}