mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 15:10:13 +01:00
The goal of -static was to avoid the libtool wrappers for easier debugging. The -no-install flag does exactly that, without requiring static linking. Related to https://bugs.freedesktop.org/show_bug.cgi?id=82292 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
18 lines
535 B
Makefile
18 lines
535 B
Makefile
noinst_PROGRAMS = event-debug
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src
|
|
|
|
event_debug_SOURCES = event-debug.c
|
|
event_debug_LDADD = ../src/libinput.la $(LIBUDEV_LIBS)
|
|
event_debug_LDFLAGS = -no-install
|
|
event_debug_CFLAGS = $(LIBUDEV_CFLAGS)
|
|
|
|
if BUILD_EVENTGUI
|
|
noinst_PROGRAMS += event-gui
|
|
|
|
event_gui_SOURCES = event-gui.c
|
|
event_gui_LDADD = ../src/libinput.la $(CAIRO_LIBS) $(GTK_LIBS) $(LIBUDEV_LIBS)
|
|
event_gui_CFLAGS = $(CAIRO_CFLAGS) $(GTK_CFLAGS) $(LIBUDEV_CFLAGS)
|
|
event_gui_LDFLAGS = -no-install
|
|
endif
|