view utils/Makefile @ 61:ffbbce856ac7

utils/gen-hex-lines: import from vband-misc repository
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 25 Sep 2024 18:48:17 +0000
parents
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}