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 28
|
plugindir = $(libdir)/$(PACKAGE)/plugins/libsensors
AM_CPPFLAGS = \
-I$(top_srcdir) \
$(GLIB_CFLAGS) \
$(GTK_CFLAGS) \
$(AYATANA_APPINDICATOR_CFLAGS) \
$(LIBPEAS_CFLAGS) \
$(LIBSENSORS_CFLAGS) \
$(DEBUG_CFLAGS)
plugin_LTLIBRARIES = liblibsensors.la
liblibsensors_la_SOURCES = \
is-libsensors-plugin.h \
is-libsensors-plugin.c
liblibsensors_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
liblibsensors_la_LIBADD = \
$(GLIB_LIBS) \
$(GTK_LIBS) \
$(AYATANA_APPINDICATOR_LIBS) \
$(LIBPEAS_LIBS) \
$(LIBSENSORS_LIBS)
plugin_DATA = libsensors.plugin
EXTRA_DIST = $(plugin_DATA)
|