FreeCalypso > hg > vband-misc
comparison ul-test/Makefile @ 33:c1aa6a4160f6
ul-test: initial generation
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 13 May 2024 22:49:21 +0000 |
parents | |
children | f8a6ea314c5f |
comparison
equal
deleted
inserted
replaced
32:baf74dff5368 | 33:c1aa6a4160f6 |
---|---|
1 DMW_SRC=../dmw/dmw-alaw.robe | |
2 FR_OUT= fr-enc.gsm fr-decode.al fr-decode.ul | |
3 EFR_OUT=efr-enc.gsmx efr-dec-classic.al efr-dec-classic.ul efr-dec-amrefr.al \ | |
4 efr-dec-amrefr.ul | |
5 ALL_OUT=${FR_OUT} ${EFR_OUT} | |
6 | |
7 all: ${ALL_OUT} | |
8 | |
9 fr-enc.gsm: ${DMW_SRC} | |
10 gsmfr-encode-r $< $@ | |
11 | |
12 fr-decode.robe: fr-enc.gsm | |
13 gsmfr-decode-r $< $@ | |
14 | |
15 fr-decode.al: fr-decode.robe | |
16 pcm16-to-alaw $< $@ | |
17 | |
18 fr-decode.ul: fr-decode.robe | |
19 pcm16-to-ulaw $< $@ | |
20 | |
21 efr-enc.gsmx: ${DMW_SRC} | |
22 gsmefr-encode-r $< $@ | |
23 | |
24 efr-dec-classic.robe: efr-enc.gsmx | |
25 gsmefr-decode-r $< $@ | |
26 | |
27 efr-dec-classic.al: efr-dec-classic.robe | |
28 pcm16-to-alaw $< $@ | |
29 | |
30 efr-dec-classic.ul: efr-dec-classic.robe | |
31 pcm16-to-ulaw $< $@ | |
32 | |
33 efr-dec-amrefr.robe: efr-enc.gsmx | |
34 amrefr-decode-r $< $@ | |
35 | |
36 efr-dec-amrefr.al: efr-dec-amrefr.robe | |
37 pcm16-to-alaw $< $@ | |
38 | |
39 efr-dec-amrefr.ul: efr-dec-amrefr.robe | |
40 pcm16-to-ulaw $< $@ | |
41 | |
42 clean: | |
43 rm -f *.gsm *.gsmx *.robe *.al *.ul |