FreeCalypso > hg > fc-audio-config
annotate aud-fcdev3b/Makefile @ 7:677abb56abac
create aud-minimal mode config
Our FreeCalypso handset firmware will soon start requiring audio mode
configuration files. handfree and headset modes can be omitted on
targets that have no headset or loudspeaker support, but the basic
handheld mode will always be required - if audio mode loading fails,
then volume control via RV Audio Service won't work. The minimal
handheld mode config created here should be correct for all currently
supported targets.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 14 Jun 2021 00:57:24 +0000 |
parents | 25192a1bc0c3 |
children | 46f49aa6ab8c |
rev | line source |
---|---|
0
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 BINFILES= mcsi.cfg mcsi.vol spkrmax.cfg spkrmax.vol |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 INSTDIR= /opt/freecalypso/aud-fcdev3b |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 all: ${BINFILES} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 mcsi.cfg: mcsi.src |
1
25192a1bc0c3
aud-fcdev3b/Makefile: use installed tiaud-compile and tiaud-mkvol tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
0
diff
changeset
|
7 tiaud-compile $< $@ |
0
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 mcsi.vol: Makefile |
1
25192a1bc0c3
aud-fcdev3b/Makefile: use installed tiaud-compile and tiaud-mkvol tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
0
diff
changeset
|
10 tiaud-mkvol 150 $@ |
0
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 spkrmax.cfg: spkrmax.src |
1
25192a1bc0c3
aud-fcdev3b/Makefile: use installed tiaud-compile and tiaud-mkvol tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
0
diff
changeset
|
13 tiaud-compile $< $@ |
0
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 spkrmax.vol: Makefile |
1
25192a1bc0c3
aud-fcdev3b/Makefile: use installed tiaud-compile and tiaud-mkvol tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
0
diff
changeset
|
16 tiaud-mkvol 200 $@ |
0
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 install: ${BINFILES} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 mkdir -p ${INSTDIR} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 install -c -m 644 ${BINFILES} ${INSTDIR} |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 clean: |
0cd01cccc3a0
initial import of aud-fcdev3b source from freecalypso-tools
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 rm -f *.cfg *.vol |