blob: 83f889320cf15162f3724b83928758e8186ff434 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# HDDTEMP plugin
plugindir = $(libdir)/mate-sensors-applet/plugins
AM_CPPFLAGS = -DMATELOCALEDIR=\""$(datadir)/locale/"\" \
-DG_LOG_DOMAIN=\""sensors-applet"\" \
-DPIXMAPS_DIR=\""$(datadir)/pixmaps/$(PACKAGE)/"\" \
-DDATADIR=\""$(datadir)"\" \
-DLIBDIR=\""$(libdir)"\" \
-DSYSCONFDIR=\""$(sysconfdir)"\" \
-DPREFIX=\""$(prefix)"\" \
-I$(top_srcdir) \
$(GLIB_CFLAGS) \
$(WARN_CFLAGS)
plugin_LTLIBRARIES = libhddtemp.la
libhddtemp_la_SOURCES = \
hddtemp-plugin.h \
hddtemp-plugin.c
libhddtemp_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS) $(GLIB_LIBS)
libhddtemp_la_LIBADD = $(top_builddir)/lib/libmate-sensors-applet-plugin.la
-include $(top_srcdir)/git.mk
|