view utils/Makefile @ 95:7c7ace4999c1

trau-hr-dump: change code to use getopt
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 18 Mar 2025 23:08:29 +0000 (2 weeks ago)
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}