mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 18:40:05 +01:00
Looking at debugging output is nice but not useful when testing for the feel of a device. Add a tool that presents a canvas and draws the various events onto it. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
18 lines
527 B
Makefile
18 lines
527 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 = -static
|
|
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 = -static
|
|
endif
|