view efr-sid/Makefile @ 51:914eeb3ab866

efr-sid OS#6538: generate test frames in hex form
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 12 Aug 2024 03:06:17 +0000
parents 3e632126e099
children fd498c6898a8
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG1=	mk-sid-test
PROG2=	mk-sid-test2
PROGS=	${PROG1} ${PROG2}
INPUT=	dtx01-frame71.cod
OUT1=	efr-sid-test.gsmx
OUT2=	efr-sid-test2.gsmx
OUT2H=	efr-sid-test2.hex
OUTPUTS=${OUT1} ${OUT2} ${OUT2H}

all:	${PROGS} ${OUTPUTS}

${PROG1}:	${PROG1}.o etsi-bit-rd.o sidbits.o
	${CC} ${CFLAGS} -o $@ $^

${OUT1}:	${PROG1} ${INPUT}
	./${PROG1} ${INPUT} $@

${PROG2}:	${PROG2}.o etsi-bit-rd.o sidbits.o
	${CC} ${CFLAGS} -o $@ $^

${OUT2}:	${PROG2} ${INPUT}
	./${PROG2} ${INPUT} $@

${OUT2H}:	${OUT2}
	../utils/gen-hex-lines ${OUT2} $@ 31

clean:
	rm -f ${PROGS} *.o *.gsmx *.hex