view efr-sid/Makefile @ 48:3e632126e099

efr-sid: generate efr-sid-test2.gsmx for OS#6538
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 11 Aug 2024 22:17:37 +0000
parents 8bfc517fda3b
children 914eeb3ab866
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
OUTPUTS=${OUT1} ${OUT2}

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} $@

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