view utils/Makefile @ 115:62b3b916c0a4 default tip

trau-decode: add inst-progs list
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 22 Dec 2025 08:37:22 +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}