1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
if HAVE_SNDFILE
sndfileltlibs = libsndfile_in.la
sndfileldflags = -export-dynamic -avoid-version
sndfilesources = sndfile_engine.c
else
sndfileltlibs =
sndfileldflags =
sndfilesources =
endif
EXTRA_DIST = sndfile_engine.c
lib_LTLIBRARIES = $(sndfileltlibs)
AM_CFLAGS = @DFLAGS@ -D_REENTRANT -I$(top_builddir) -I$(top_srcdir)/libalsaplayer \
-I$(top_srcdir)/alsaplayer @SNDFILE_CFLAGS@
libdir = $(ADDON_DIR)/input
libsndfile_in_la_LDFLAGS = $(sndfileldflags)
LIBS = @SNDFILE_LIBS@
libsndfile_in_la_SOURCES= $(sndfilesources)
|