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