blob: 8b10b59d77201c24a8a254a43290b4a4e95c5fe5 (
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
|
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
always_built_SUBDIRS = \
charpick \
drivemount \
geyes \
stickynotes \
trashapplet \
command
SUBDIRS = \
po \
$(always_built_SUBDIRS) \
$(gtop_SUBDIRS) \
$(libmateweather_SUBDIRS) \
man \
$(battstat_SUBDIR) \
$(accessx_status_SUBDIR) \
$(cpufreq_SUBDIR) \
$(timerapplet_SUBDIR)
DIST_SUBDIRS = \
po \
drivemount \
charpick \
geyes \
battstat \
multiload \
mateweather \
man \
accessx-status \
stickynotes \
timerapplet \
trashapplet \
cpufreq \
command \
netspeed
EXTRA_DIST = \
m4/ac-define-dir.m4 \
COPYING-DOCS \
intltool-update.in \
intltool-extract.in \
intltool-merge.in \
xmldocs.make \
omf.make \
autogen.sh
# 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 = intltool-extract \
intltool-merge \
intltool-update
-include $(top_srcdir)/git.mk
|