mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 02:35:43 +01:00
4bc386bb71
Add supprt for hwcfg objects: For ex: Object.Base.hw_config."SSP0 hw_config 0" { id 0 mclk_freq 24000000 bclk_freq 4800000 tdm_slot_width 25 } would get converted to: SectionHWConfig { 'SSP0 hw_config 0' { id 0 format I2S bclk codec_consumer bclk_freq 4800000 fsync codec_consumer fsync_freq 48000 mclk codec_mclk_in mclk_freq 24000000 tdm_slots 2 tdm_slot_width 25 tx_slots 3 rx_slots 3 } } and the corresponding SectionBE will be updated with the hwcfgs reference as: hw_configs [ 'SSP0 hw_config 0' ] Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
23 lines
426 B
Makefile
23 lines
426 B
Makefile
bin_PROGRAMS = \
|
|
alsatplg
|
|
|
|
if USE_RST2MAN
|
|
man_MANS = alsatplg.1
|
|
endif
|
|
|
|
%.1: %.rst
|
|
rst2man $< > $@
|
|
|
|
alsatplg_SOURCES = topology.c pre-processor.c pre-process-class.c pre-process-object.c \
|
|
pre-process-dapm.c pre-process-dai.c
|
|
|
|
noinst_HEADERS = topology.h pre-processor.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-Wall -I$(top_srcdir)/include
|
|
|
|
alsatplg_LDADD = $(ALSA_TOPOLOGY_LIBS)
|
|
|
|
EXTRA_DIST = alsatplg.rst
|
|
|
|
CLEANFILES = alsatplg.1
|