blob: fd5d5bc2a18aa885fb8dc9f0cabc8a07fbe21812 (
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
|
## Again, remove the comments on an applet you want to work on
gtop_applets = multiload
if BUILD_GTOP_APPLETS
gtop_SUBDIRS = $(gtop_applets)
endif
wordexp_applets = screenshooter
if HAVE_WORDEXP
wordexp_SUBDIRS = $(wordexp_applets)
endif
vfs_applets = \
gtik \
gweather
if BUILD_GNOME_VFS_APPLETS
vfs_SUBDIRS = $(vfs_applets)
endif
zvt_applets = \
mini-commander
if BUILD_ZVT_APPLETS
zvt_SUBDIRS = $(zvt_applets)
endif
## esd_applets = \
## sound-monitor
## if HAVE_LIBESD
## esd_SUBDIRS = $(esd_applets)
## endif
##
cdplayer_applets = \
cdplayer
if APPLET_CDPLAYER
cdplayer_SUBDIRS = $(cdplayer_applets)
endif
mixer_applets = \
mixer
if APPLET_MIXER
mixer_SUBDIRS = $(mixer_applets)
endif
modemlights_applets = \
modemlights
if APPLET_MODEMLIGHTS
modemlights_SUBDIRS = $(modemlights_applets)
endif
always_built_SUBDIRS = \
drivemount \
panel-menu \
charpick \
geyes \
mini-commander \
gkb-new \
battstat
## whereami
SUBDIRS = \
po \
$(mixer_SUBDIRS) \
$(modemlights_SUBDIRS) \
$(wordexp_SUBDIRS) \
$(cdplayer_SUBDIRS) \
$(always_built_SUBDIRS) \
$(gtop_SUBDIRS) \
$(vfs_SUBDIRS) \
$(zvt_SUBDIRS)
## $(esd_SUBDIRS) \
## omf-install
DIST_SUBDIRS = \
po \
mixer \
modemlights \
screenshooter \
cdplayer \
drivemount \
panel-menu \
charpick \
geyes \
mini-commander \
gkb-new \
battstat \
multiload \
gtik \
gweather \
mini-commander \
man
EXTRA_DIST = \
COPYING-DOCS \
gnome-applets.spec.in \
gnome-applets.spec \
applet-docs.make \
sgmldocs.make \
intltool-update.in \
intltool-extract.in \
intltool-merge.in \
message-of-doom
|