mirror of
https://github.com/openharmony/third_party_libevdev.git
synced 2026-07-18 17:24:31 -04:00
5550295b5a
Signed-off-by: houchengyu2022 <houchengyu@huawei.com>
30 lines
897 B
Makefile
30 lines
897 B
Makefile
noinst_PROGRAMS = libevdev-events libevdev-list-codes
|
|
bin_PROGRAMS = \
|
|
touchpad-edge-detector \
|
|
mouse-dpi-tool \
|
|
libevdev-tweak-device
|
|
|
|
AM_CPPFLAGS = $(GCC_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/libevdev
|
|
libevdev_ldadd = $(top_builddir)/libevdev/libevdev.la
|
|
|
|
libevdev_events_SOURCES = libevdev-events.c
|
|
libevdev_events_LDADD = $(libevdev_ldadd)
|
|
|
|
libevdev_list_codes_SOURCES = libevdev-list-codes.c
|
|
libevdev_list_codes_LDADD = $(libevdev_ldadd)
|
|
|
|
touchpad_edge_detector_SOURCES = touchpad-edge-detector.c
|
|
touchpad_edge_detector_LDADD = $(libevdev_ldadd)
|
|
|
|
mouse_dpi_tool_SOURCES = mouse-dpi-tool.c
|
|
mouse_dpi_tool_LDADD = $(libevdev_ldadd)
|
|
|
|
libevdev_tweak_device_SOURCES = libevdev-tweak-device.c
|
|
libevdev_tweak_device_LDADD = $(libevdev_ldadd)
|
|
|
|
dist_man_MANS = \
|
|
libevdev-tweak-device.1 \
|
|
mouse-dpi-tool.1 \
|
|
touchpad-edge-detector.1 \
|
|
$(NULL)
|