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
|
NULL =
enabled_plugins = \
a11y-keyboard \
a11y-settings \
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
if BUILD_RFKILL
enabled_plugins += rfkill
else
disabled_plugins += rfkill
endif
SUBDIRS = common $(enabled_plugins)
DIST_SUBDIRS = $(SUBDIRS) $(disabled_plugins)
-include $(top_srcdir)/git.mk
|