1EXTRA_DIST = Versions 2COMPATNUM=@LIBTOOL_VERSION_INFO@ 3 4if VERSIONED_SYMBOLS 5VSYMS = -Wl,--version-script=$(srcdir)/Versions 6else 7VSYMS = 8endif 9 10if SYMBOLIC_FUNCTIONS 11SYMFUNCS = -Wl,-Bsymbolic-functions 12else 13SYMFUNCS = 14endif 15 16lib_LTLIBRARIES = libatopology.la 17 18libatopology_la_LIBADD = ../libasound.la 19libatopology_la_LDFLAGS = -version-info $(COMPATNUM) $(VSYMS) $(SYMFUNCS) $(LDFLAGS_NOUNDEFINED) 20 21libatopology_la_SOURCES =\ 22 parser.c \ 23 builder.c \ 24 ctl.c \ 25 dapm.c \ 26 pcm.c \ 27 data.c \ 28 text.c \ 29 channel.c \ 30 ops.c \ 31 elem.c \ 32 save.c \ 33 decoder.c \ 34 log.c 35 36noinst_HEADERS = tplg_local.h 37 38AM_CPPFLAGS=-I$(top_srcdir)/include 39