view utils/Makefile @ 69:cf60172895fe default tip

pathloss: add sysmo-example-10w
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 25 Oct 2024 16:26:26 +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}