view dhf/Makefile @ 34:307fe06fabec

dhf: generate EFR hex DHF in C form
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 14 May 2024 03:36:31 +0000
parents baf74dff5368
children 6bb1651f8c11
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	efr-dhf-hexout
COUT=	efr-dhf-bytes.c mr122-dhf-bytes.c

all:	${PROG} ${COUT}

${PROG}:	${PROG}.c
	${CC} ${CFLAGS} -o $@ $@.c -lgsmefr -ltwamr

${COUT}:	efr-dhf-hexout
	./efr-dhf-hexout efr-dhf-bytes.c mr122-dhf-bytes.c

clean:
	rm -f *.o ${PROG} ${COUT}