mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-25 11:40:07 +01:00
Two main goals of this library: - 'transparently' handle SYN_DROPPED events - avoid errors in ioctl handling by providing a simpler interface. Keeps a cached copy of the device for quick querying. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
11 lines
341 B
Makefile
11 lines
341 B
Makefile
lib_LTLIBRARIES=libevdev.la
|
|
|
|
libevdev_la_SOURCES = \
|
|
libevdev.h \
|
|
libevdev-int.h \
|
|
libevdev.c
|
|
|
|
libevdev_la_LDFLAGS = -version-info $(LIBEVDEV_LT_VERSION) -export-symbols-regex '^libevdev_'
|
|
|
|
libevdevincludedir = $(includedir)/libevdev-1.0/libevdev
|
|
libevdevinclude_HEADERS = libevdev.h
|