mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-24 17:00:06 +01:00
This gives the event gui the ability to use the path backend, and any configuration toggles given on the commandline. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
24 lines
660 B
Makefile
24 lines
660 B
Makefile
noinst_PROGRAMS = event-debug
|
|
noinst_LTLIBRARIES = libshared.la
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src
|
|
|
|
|
|
libshared_la_SOURCES = \
|
|
shared.c \
|
|
shared.h
|
|
|
|
event_debug_SOURCES = event-debug.c
|
|
event_debug_LDADD = ../src/libinput.la libshared.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 libshared.la $(CAIRO_LIBS) $(GTK_LIBS) $(LIBUDEV_LIBS)
|
|
event_gui_CFLAGS = $(CAIRO_CFLAGS) $(GTK_CFLAGS) $(LIBUDEV_CFLAGS)
|
|
event_gui_LDFLAGS = -no-install
|
|
endif
|