mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 03:45:42 +01:00
96b5e5a875
Add support for pre-processing TLV objects For example: Object.Base.tlv."vtlv_m64s2" {} will be converted to: SectionTLV.'vtlv_m64s2' {} And the mixer controle section will be updated to add the reference to the tlv object. Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
23 lines
408 B
Makefile
23 lines
408 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
|
|
|
|
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
|