blob: daac7af930af75c79f5b9975941855f383ae5b0a (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
gtop_applets = multiload netspeed
if BUILD_GTOP_APPLETS
gtop_SUBDIRS = $(gtop_applets)
endif
libmateweather_applets = \
mateweather
if BUILD_LIBMATEWEATHER_APPLETS
libmateweather_SUBDIRS = $(libmateweather_applets)
endif
if BUILD_BATTSTAT_APPLET
battstat_SUBDIR = battstat
endif
if APPLET_ACCESSX
accessx_status_SUBDIR = accessx-status
endif
if BUILD_CPUFREQ_APPLET
cpufreq_SUBDIR = cpufreq
endif
if BUILD_TIMERAPPLET
timerapplet_SUBDIR = timerapplet
endif
if BUILD_INVEST_APPLET
invest_applet_SUBDIR = invest-applet
endif
if BUILD_INDICATOR_APPLET
indicator_applet_SUBDIR = indicator-applet
endif
if BUILD_SENSORS_APPLET
sensors_applet_SUBDIR = sensors-applet
endif
always_built_SUBDIRS = \
charpick \
drivemount \
geyes \
stickynotes \
trashapplet \
command
SUBDIRS = \
po \
$(always_built_SUBDIRS) \
$(gtop_SUBDIRS) \
$(libmateweather_SUBDIRS) \
man \
$(battstat_SUBDIR) \
$(accessx_status_SUBDIR) \
$(invest_applet_SUBDIR) \
$(cpufreq_SUBDIR) \
$(timerapplet_SUBDIR) \
$(indicator_applet_SUBDIR) \
$(sensors_applet_SUBDIR)
DIST_SUBDIRS = \
po \
drivemount \
charpick \
geyes \
battstat \
multiload \
mateweather \
man \
accessx-status \
stickynotes \
timerapplet \
trashapplet \
cpufreq \
invest-applet \
command \
netspeed \
indicator-applet \
sensors-applet
DISTCHECK_CONFIGURE_FLAGS = \
--enable-compile-warnings=no \
CFLAGS='-Wno-deprecated-declarations'
M4_FILES = \
m4/ac-define-dir.m4 \
m4/as-ac-expand.m4
EXTRA_DIST = \
$(M4_FILES) \
COPYING-DOCS \
xmldocs.make \
omf.make \
autogen.sh
MAINTAINERCLEANFILES = \
ABOUT-NLS \
INSTALL \
aclocal.m4 \
compile \
config.guess \
config.h.in \
config.h.in~ \
config.log \
config.rpath \
config.sub \
configure \
depcomp \
install-sh \
libtool \
ltmain.sh \
missing \
omf.make \
po/*.po~ \
po/@GETTEXT_PACKAGE@.pot \
po/Makefile.in.in \
po/Makevars.template \
po/Rules-quot \
po/boldquot.sed \
po/en@boldquot.header \
po/en@quot.header \
po/insert-header.sin \
po/quot.sed \
po/remove-potcdate.sin \
stamp-h1 \
xmldocs.make \
$(filter-out $(M4_FILES), $(wildcard m4/*.m4)) \
`find "$(srcdir)" -type f -name Makefile.in -print`
# 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
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
DISTCLEANFILES =
-include $(top_srcdir)/git.mk
|