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
|
if HAVE_GTK2
blurscopeltlibs = libblurscope.la
blurscopeldflags = -export-dynamic -avoid-version @GTK2_LIBS@
blurscopesources = blurscope.c
lib_LTLIBRARIES = $(blurscopeltlibs)
else
blurscopeltlibs =
blurscopeldflags =
blurscopesources =
endif
libdir = $(ADDON_DIR)/scopes2
AM_CFLAGS = -D_REENTRANT -I$(top_builddir) \
-I$(top_srcdir)/libalsaplayer -I$(top_srcdir)/alsaplayer \
@GTK2_CFLAGS@ @DFLAGS@
libblurscope_la_LDFLAGS = $(blurscopeldflags)
LIBS =
libblurscope_la_SOURCES= $(blurscopesources)
|