mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 22:10:05 +01:00
Our static library leaks symbols like crazy, some of which are likely conflicts with users of this library (log_msg, open_restricted, ...). Disale static linking by default so we don't have to spend time debugging this. Related to: https://bugs.freedesktop.org/show_bug.cgi?id=82292 https://bugs.freedesktop.org/show_bug.cgi?id=82785 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
45 lines
933 B
Makefile
45 lines
933 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-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)
|
|
libinput_la_CFLAGS = -I$(top_srcdir)/include \
|
|
$(MTDEV_CFLAGS) \
|
|
$(LIBUDEV_CFLAGS) \
|
|
$(LIBEVDEV_CFLAGS) \
|
|
$(GCC_CFLAGS)
|
|
|
|
libinput_la_LDFLAGS = -version-info $(LIBINPUT_LT_VERSION) -shared
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libinput.pc
|
|
|
|
AM_CFLAGS = $(GCC_CFLAGS)
|
|
|
|
DISTCLEANFILES = libinput-version.h
|
|
EXTRA_DIST = libinput-version.h.in
|