mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-27 12:40:12 +01:00
These devices set the LIBINPUT_DEVICE_CAP_TABLET flag, and emit a lot more axis information then mice and touchpads. As such, tablet events are in a whole new group of events that is separate from everything else. In this commit, only X and Y axes are reported in libinput. Based off the patch originally written by Carlos Garnacho Signed-off-by: Stephen Chandler Paul <thatslyude@gmail.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
48 lines
978 B
Makefile
48 lines
978 B
Makefile
lib_LTLIBRARIES = libinput.la
|
|
|
|
include_HEADERS = \
|
|
libinput.h
|
|
|
|
libinput_la_SOURCES = \
|
|
libinput.c \
|
|
libinput.h \
|
|
libinput-private.h \
|
|
libinput-util.c \
|
|
libinput-util.h \
|
|
evdev.c \
|
|
evdev.h \
|
|
evdev-tablet.c \
|
|
evdev-tablet.h \
|
|
evdev-mt-touchpad.c \
|
|
evdev-mt-touchpad.h \
|
|
evdev-mt-touchpad-tap.c \
|
|
evdev-mt-touchpad-buttons.c \
|
|
filter.c \
|
|
filter.h \
|
|
path.h \
|
|
path.c \
|
|
udev-seat.c \
|
|
udev-seat.h \
|
|
timer.c \
|
|
timer.h \
|
|
../include/linux/input.h
|
|
|
|
libinput_la_LIBADD = $(MTDEV_LIBS) \
|
|
$(LIBUDEV_LIBS) \
|
|
$(LIBEVDEV_LIBS) \
|
|
-lm
|
|
libinput_la_CFLAGS = -I$(top_srcdir)/include \
|
|
$(MTDEV_CFLAGS) \
|
|
$(LIBUDEV_CFLAGS) \
|
|
$(LIBEVDEV_CFLAGS) \
|
|
$(GCC_CFLAGS)
|
|
|
|
libinput_la_LDFLAGS = -version-info $(LIBINPUT_LT_VERSION)
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libinput.pc
|
|
|
|
AM_CFLAGS = $(GCC_CFLAGS)
|
|
|
|
DISTCLEANFILES = libinput-version.h
|
|
EXTRA_DIST = libinput-version.h.in
|