view utils/Makefile @ 100:a1868d31ce7f default tip

tfo-ut: add README
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 19 Mar 2025 01:39:57 +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}