mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-24 21:40:05 +01:00
14 lines
502 B
Makefile
14 lines
502 B
Makefile
noinst_PROGRAMS = test-event-names test-libevdev-init
|
|
|
|
TESTS = $(noinst_PROGRAMS)
|
|
|
|
common_sources = test-common-uinput.c test-common-uinput.h
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/libevdev $(CHECK_CFLAGS)
|
|
libevdev_ldadd = $(top_builddir)/libevdev/libevdev.la
|
|
|
|
test_event_names_SOURCES = test-event-names.c $(common_sources)
|
|
test_event_names_LDADD = $(libevdev_ldadd) $(CHECK_LIBS)
|
|
|
|
test_libevdev_init_SOURCES = test-libevdev-init.c $(common_sources)
|
|
test_libevdev_init_LDADD = $(libevdev_ldadd) $(CHECK_LIBS)
|