blob: f84cdf9248bab7c1044c1e44dd48746167339c82 (
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
|
NULL =
enabled_plugins = \
a11y-keyboard \
background \
clipboard \
datetime \
dummy \
font \
housekeeping \
keybindings \
keyboard \
media-keys \
mouse \
sound \
typing-break \
xrandr \
xrdb \
xsettings \
$(NULL)
disabled_plugins = $(NULL)
if SMARTCARD_SUPPORT
enabled_plugins += smartcard
else
disabled_plugins += smartcard
endif
SUBDIRS = common $(enabled_plugins)
DIST_SUBDIRS = $(SUBDIRS) $(disabled_plugins)
|