blob: d3a838f3004ef8ebe84671b1797c0f01d3ab4f14 (
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
|
## Again, remove the comments on an applet you want to work on
gtop_applets = multiload
if BUILD_GTOP_APPLETS
gtop_SUBDIRS = $(gtop_applets)
endif
vfs_applets = \
gtik \
gweather
if BUILD_GNOME_VFS_APPLETS
vfs_SUBDIRS = $(vfs_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
if BUILD_BATTSTAT_APPLET
battstat_SUBDIR = battstat
endif
if APPLET_ACCESSX
accessx_status_SUBDIR = accessx-status
endif
if APPLET_GSWITCHIT
gswitchit_SUBDIRS = libgswitchit gswitchit
endif
always_built_SUBDIRS = \
drivemount \
charpick \
geyes \
mailcheck \
mini-commander \
gkb-new \
wireless \
stickynotes
SUBDIRS = \
po \
screen-exec \
$(always_built_SUBDIRS) \
$(mixer_SUBDIRS) \
$(modemlights_SUBDIRS) \
$(cdplayer_SUBDIRS) \
$(gtop_SUBDIRS) \
$(vfs_SUBDIRS) \
$(battstat_SUBDIR) \
$(accessx_status_SUBDIR)\
$(gswitchit_SUBDIRS)
DIST_SUBDIRS = \
po \
screen-exec \
mailcheck \
mixer \
modemlights \
cdplayer \
drivemount \
charpick \
geyes \
mini-commander \
gkb-new \
battstat \
multiload \
gtik \
gweather \
mini-commander \
man \
wireless \
accessx-status \
stickynotes \
libgswitchit \
gswitchit
EXTRA_DIST = \
COPYING-DOCS \
gnome-applets.spec.in \
gnome-applets.spec \
intltool-update.in \
intltool-extract.in \
intltool-merge.in \
xmldocs.make \
omf.make
|