blob: 25b38f446f99362f113f696b79bcad274030cbee (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
SUBDIRS = sensors-applet lib plugins pixmaps po help
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
appletdir = $(datadir)/mate-panel/applets
applet_in_files = org.mate.applets.SensorsApplet.mate-panel-applet.desktop.in
applet_DATA = $(applet_in_files:.mate-panel-applet.desktop.in=.mate-panel-applet)
$(applet_in_files): $(applet_in_files).in Makefile
$(AM_V_GEN)sed \
-e "s|\@LIBEXECDIR\@|$(libexecdir)|" \
$< > $@
$(applet_DATA): $(applet_in_files) Makefile
$(AM_V_GEN) $(MSGFMT) --desktop --keyword=Name --keyword=Description --template $< -d $(top_srcdir)/po -o $@
uidir = $(datadir)/mate-sensors-applet/ui
ui_DATA = SensorsApplet.xml
servicedir = $(datadir)/dbus-1/services
service_in_files = org.mate.panel.applet.SensorsAppletFactory.service.in
service_DATA = $(service_in_files:.service.in=.service)
org.mate.panel.applet.SensorsAppletFactory.service: $(service_in_files)
$(AM_V_GEN)sed \
-e "s|\@LIBEXECDIR\@|$(libexecdir)|" \
$< > $@
gsettingsschema_in_files = \
org.mate.sensors-applet.gschema.xml.in \
org.mate.sensors-applet.sensor.gschema.xml.in
gsettings_SCHEMAS = $(gsettingsschema_in_files:.xml.in=.xml)
@GSETTINGS_RULES@
CLEANFILES = $(applet_DATA) \
$(applet_in_files) \
$(service_DATA) \
$(gsettings_SCHEMAS) \
*.gschema.valid
DISTCHECK_CONFIGURE_FLAGS = \
--enable-compile-warnings=no \
CFLAGS='-Wno-deprecated-declarations'
EXTRA_DIST = $(ui_DATA) \
$(applet_in_files).in \
$(service_in_files) \
$(gsettingsschema_in_files) \
autogen.sh
DISTCLEANFILES =
MSACLEANFILES = aclocal.m4 \
compile \
config.* \
configure \
depcomp \
install-sh \
ltmain.sh \
missing \
omf.make \
xmldocs.make \
INSTALL \
$(top_srcdir)/sensors-applet/config.h*
msa-clean: maintainer-clean
-test -z "$(MSACLEANFILES)" || rm -f $(MSACLEANFILES)
-rm -rf m4;
find . -name "Makefile.in" -exec rm \{\} \;
.PHONY: msa-clean
# Build ChangeLog from GIT history
ChangeLog:
$(AM_V_GEN) if test -d $(top_srcdir)/.git; then \
GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \
fi
dist: ChangeLog
.PHONY: ChangeLog
|