comparison aud-minimal/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
children
comparison
equal deleted inserted replaced
6:223db079c77f 7:677abb56abac
1 BINFILES= handheld.cfg handheld.vol
2 INSTDIR= /opt/freecalypso/aud-minimal
3
4 all: ${BINFILES}
5
6 handheld.cfg: handheld.src
7 tiaud-compile $< $@
8
9 handheld.vol: Makefile
10 tiaud-mkvol 150 $@
11
12 install: ${BINFILES}
13 mkdir -p ${INSTDIR}
14 install -c -m 644 ${BINFILES} ${INSTDIR}
15
16 clean:
17 rm -f *.cfg *.vol