blob: c7ce7d6351954a8b7a83294b628e9b653543d28e (
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 \
housekeeping \
keybindings \
keyboard \
media-keys \
mpris \
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)
|