view 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
line wrap: on
line source

BINFILES=	mcsi.cfg mcsi.vol spkrmax.cfg spkrmax.vol
INSTDIR=	/opt/freecalypso/aud-fcdev3b

all:	${BINFILES}

mcsi.cfg:	mcsi.src
	tiaud-compile $< $@

mcsi.vol:	Makefile
	tiaud-mkvol 150 $@

spkrmax.cfg:	spkrmax.src
	tiaud-compile $< $@

spkrmax.vol:	Makefile
	tiaud-mkvol 200 $@

install:	${BINFILES}
	mkdir -p ${INSTDIR}
	install -c -m 644 ${BINFILES} ${INSTDIR}

clean:
	rm -f *.cfg *.vol