FreeCalypso > hg > vband-misc
changeset 52:fd498c6898a8
efr-sid OS#6538: generate TCH UL file for FC testing
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 12 Aug 2024 03:09:13 +0000 |
parents | 914eeb3ab866 |
children | 637ee027999b |
files | efr-sid/Makefile |
diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/efr-sid/Makefile Mon Aug 12 03:06:17 2024 +0000 +++ b/efr-sid/Makefile Mon Aug 12 03:09:13 2024 +0000 @@ -7,7 +7,8 @@ OUT1= efr-sid-test.gsmx OUT2= efr-sid-test2.gsmx OUT2H= efr-sid-test2.hex -OUTPUTS=${OUT1} ${OUT2} ${OUT2H} +OUT2T= efr-sid-test2.tch +OUTPUTS=${OUT1} ${OUT2} ${OUT2H} ${OUT2T} all: ${PROGS} ${OUTPUTS} @@ -26,5 +27,8 @@ ${OUT2H}: ${OUT2} ../utils/gen-hex-lines ${OUT2} $@ 31 +${OUT2T}: ${OUT2} + fc-efr2tch ${OUT2} $@ + clean: - rm -f ${PROGS} *.o *.gsmx *.hex + rm -f ${PROGS} *.o *.gsmx *.hex *.tch