comparison 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
comparison
equal deleted inserted replaced
60:eeb28c9c633a 61:ffbbce856ac7
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= gen-hex-lines
4
5 all: ${PROGS}
6
7 gen-hex-lines: gen-hex-lines.c
8 ${CC} ${CFLAGS} -o $@ $@.c
9
10 clean:
11 rm -f *.o ${PROGS}