mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-08 10:06:19 -05:00
topology: autotools: Add build support for topology core
Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
1d1dff5676
commit
fec1e8f253
4 changed files with 38 additions and 1 deletions
|
|
@ -42,6 +42,10 @@ if BUILD_UCM
|
|||
SUBDIRS += ucm
|
||||
libasound_la_LIBADD += ucm/libucm.la
|
||||
endif
|
||||
if BUILD_TOPOLOGY
|
||||
SUBDIRS += topology
|
||||
libasound_la_LIBADD += topology/libtopology.la
|
||||
endif
|
||||
if BUILD_ALISP
|
||||
SUBDIRS += alisp
|
||||
libasound_la_LIBADD += alisp/libalisp.la
|
||||
|
|
@ -81,6 +85,9 @@ seq/libseq.la:
|
|||
ucm/libucm.la:
|
||||
$(MAKE) -C ucm libucm.la
|
||||
|
||||
topology/libtopology.la:
|
||||
$(MAKE) -C topology libtopology.la
|
||||
|
||||
instr/libinstr.la:
|
||||
$(MAKE) -C instr libinstr.la
|
||||
|
||||
|
|
|
|||
19
src/topology/Makefile.am
Normal file
19
src/topology/Makefile.am
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
EXTRA_LTLIBRARIES = libtopology.la
|
||||
|
||||
libtopology_la_SOURCES =\
|
||||
parser.c \
|
||||
builder.c \
|
||||
ctl.c \
|
||||
dapm.c \
|
||||
pcm.c \
|
||||
data.c \
|
||||
text.c \
|
||||
channel.c \
|
||||
ops.c \
|
||||
elem.c
|
||||
|
||||
noinst_HEADERS = tplg_local.h
|
||||
|
||||
all: libtopology.la
|
||||
|
||||
AM_CPPFLAGS=-I$(top_srcdir)/include
|
||||
Loading…
Add table
Add a link
Reference in a new issue