diff 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 diff
--- a/efr-sid/Makefile	Mon Aug 12 02:49:28 2024 +0000
+++ b/efr-sid/Makefile	Mon Aug 12 03:06:17 2024 +0000
@@ -6,7 +6,8 @@
 INPUT=	dtx01-frame71.cod
 OUT1=	efr-sid-test.gsmx
 OUT2=	efr-sid-test2.gsmx
-OUTPUTS=${OUT1} ${OUT2}
+OUT2H=	efr-sid-test2.hex
+OUTPUTS=${OUT1} ${OUT2} ${OUT2H}
 
 all:	${PROGS} ${OUTPUTS}
 
@@ -22,5 +23,8 @@
 ${OUT2}:	${PROG2} ${INPUT}
 	./${PROG2} ${INPUT} $@
 
+${OUT2H}:	${OUT2}
+	../utils/gen-hex-lines ${OUT2} $@ 31
+
 clean:
-	rm -f ${PROGS} *.o *.gsmx
+	rm -f ${PROGS} *.o *.gsmx *.hex