diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-05-24 10:17:46 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2017-06-02 12:21:35 +1000 |
commit | 67000f1ae63372d9c11f5966c07297081f412ee7 (patch) | |
tree | fc0589edf4b69813321c38743119e0f5630ca75e /tools | |
parent | 08c622aeb29d651c0645dc4debed9ffaee1a68b6 (diff) |
tools: drop event-debug
It's the same thing as libinput-debug-events and the newer "libinput
debug-events" command. The only reason it existed after we started providing
libinput-debug-events is the -no-install libtool flag that makes debugging
with gdb bearable.
Now that we're slowly moving to meson, this isn't needed anymore. If you want
to gdb directly in the source tree, build with meson.
Or use "libtool --mode=execute gdb" for an autotools build.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/.gitignore | 1 | ||||
-rw-r--r-- | tools/Makefile.am | 15 |
2 files changed, 4 insertions, 12 deletions
diff --git a/tools/.gitignore b/tools/.gitignore index cb93429..2e4c93d 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -1,4 +1,3 @@ -event-debug event-gui ptraccel-debug libinput-list-devices diff --git a/tools/Makefile.am b/tools/Makefile.am index 77b4e74..68d1fd4 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,4 +1,4 @@ -noinst_PROGRAMS = event-debug ptraccel-debug +noinst_PROGRAMS = ptraccel-debug bin_PROGRAMS = libinput-list-devices libinput-debug-events libinput AM_CPPFLAGS = -I$(top_srcdir)/include \ @@ -11,13 +11,6 @@ shared_sources = \ shared.c \ shared.h -event_debug_sources = libinput-debug-events.c $(shared_sources) -event_debug_SOURCES = libinput-debug-events.c $(shared_sources) -event_debug_LDADD = ../src/libinput.la $(LIBUDEV_LIBS) $(LIBEVDEV_LIBS) -event_debug_LDFLAGS = -no-install -event_debug_CFLAGS = $(AM_CFLAGS) $(LIBUDEV_CFLAGS) $(LIBEVDEV_CFLAGS) \ - -DTOOLS_BUILD_STANDALONE=1 - ptraccel_debug_SOURCES = ptraccel-debug.c ptraccel_debug_LDADD = ../src/libfilter.la ../src/libinput.la ptraccel_debug_LDFLAGS = -no-install @@ -28,9 +21,9 @@ libinput_list_devices_CFLAGS = $(AM_CFLAGS) $(LIBUDEV_CFLAGS) $(LIBEVDEV_CFLAGS) -DTOOLS_BUILD_STANDALONE=1 dist_man1_MANS = libinput-list-devices.1 -libinput_debug_events_SOURCES = $(event_debug_SOURCES) -libinput_debug_events_LDADD = $(event_debug_LDADD) -libinput_debug_events_CFLAGS = $(AM_CFLAGS) $(event_debug_CFLAGS) \ +libinput_debug_events_SOURCES = libinput-debug-events.c $(shared_sources) +libinput_debug_events_LDADD = ../src/libinput.la $(LIBUDEV_LIBS) $(LIBEVDEV_LIBS) +libinput_debug_events_CFLAGS = $(AM_CFLAGS) $(LIBUDEV_CFLAGS) $(LIBEVDEV_CFLAGS) \ -DTOOLS_BUILD_STANDALONE=1 dist_man1_MANS += libinput-debug-events.1 |