Follow gnome-settings-daemon behavior and disable the wacom panel on s390/s390x (because this architecture does not provide development files from the wacom xorg driver) and on non Linux platforms (where udev is missing). https://bugzilla.gnome.org/show_bug.cgi?id=676714
34 lines
393 B
Makefile
34 lines
393 B
Makefile
SUBDIRS= \
|
|
common \
|
|
background \
|
|
screen \
|
|
power \
|
|
color \
|
|
display \
|
|
mouse \
|
|
online-accounts \
|
|
region \
|
|
info \
|
|
sound \
|
|
keyboard \
|
|
universal-access \
|
|
user-accounts \
|
|
datetime
|
|
|
|
if BUILD_WACOM
|
|
SUBDIRS += wacom
|
|
endif
|
|
|
|
if BUILD_PRINTERS
|
|
SUBDIRS += printers
|
|
endif
|
|
|
|
if BUILD_NETWORK
|
|
SUBDIRS += network
|
|
endif
|
|
|
|
if BUILD_BLUETOOTH
|
|
SUBDIRS += bluetooth
|
|
endif
|
|
|
|
-include $(top_srcdir)/git.mk
|