FreeCalypso > hg > fc-audio-config
annotate aud-gtamodem/Makefile @ 15:ee565d95164c default tip
aud-caramel: create handheld.{cfg,vol} equal to hds4.{cfg,vol}
The main audio channel on FC Caramel2 is not truly handheld, thus if
someone is operating a C2 board in ACI mode, then doing AT@AUL="hds4"
is more truthful than AT@AUL="handheld". However, the same audio mode
needs to be named "handheld" for the UI firmware to pick it up in our
Luna configuration.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 06 Nov 2021 08:23:16 +0000 |
parents | 1d6b649d8b08 |
children |
rev | line source |
---|---|
3
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 BINFILES= para0.cfg para0.vol |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 INSTDIR= /opt/freecalypso/aud-gtamodem |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 all: ${BINFILES} |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 para0.cfg: para0.src |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 tiaud-compile $< $@ |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 para0.vol: Makefile |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 tiaud-mkvol 150 $@ |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 install: ${BINFILES} |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 mkdir -p ${INSTDIR} |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 install -c -m 644 ${BINFILES} ${INSTDIR} |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 clean: |
1d6b649d8b08
aud-gtamodem created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 rm -f *.cfg *.vol |