mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-19 00:38:11 +02:00
Add --without-kdrive-{kbd,mouse,evdev} configure options disabling
Linux keyboard driver, Linux mouse drivers (ps2, bus,ms),
and Linux evdev driver.
Build all drivers by default as before.
Acked-by: Dan Nicholson <dbn.lists@gmail.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.net>
27 lines
413 B
Makefile
27 lines
413 B
Makefile
INCLUDES = \
|
|
@KDRIVE_INCS@ \
|
|
@KDRIVE_CFLAGS@
|
|
|
|
AM_CFLAGS = -DHAVE_DIX_CONFIG_H
|
|
|
|
noinst_LTLIBRARIES = liblinux.la
|
|
|
|
liblinux_la_SOURCES =
|
|
|
|
liblinux_la_SOURCES += linux.c klinux.h
|
|
|
|
if KDRIVE_KBD
|
|
liblinux_la_SOURCES += keyboard.c
|
|
endif
|
|
|
|
if KDRIVE_EVDEV
|
|
liblinux_la_SOURCES += evdev.c
|
|
endif
|
|
|
|
if KDRIVE_MOUSE
|
|
liblinux_la_SOURCES += mouse.c bus.c ms.c ps2.c
|
|
endif
|
|
|
|
if TSLIB
|
|
liblinux_la_SOURCES += tslib.c
|
|
endif
|