tools: rename a source file to match the future common file name paradigm

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2017-05-11 13:52:39 +10:00
parent 863fd1f0eb
commit d2c7f73d6d
3 changed files with 2 additions and 2 deletions

View file

@ -339,7 +339,7 @@ endif
############ tools ############
tools_shared_sources = [ 'tools/shared.c',
'tools/shared.h' ]
event_debug_sources = [ 'tools/event-debug.c' ] + tools_shared_sources
event_debug_sources = [ 'tools/libinput-debug-events.c' ] + tools_shared_sources
executable('event-debug',
event_debug_sources,
dependencies : dep_libinput,

View file

@ -11,7 +11,7 @@ shared_sources = \
shared.c \
shared.h
event_debug_SOURCES = event-debug.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)