blob: 552df70b65396c62f355d9e33f91a50e8b2fc4f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
lib_LTLIBRARIES=libevdev.la
AM_CPPFLAGS = $(GCC_CFLAGS) $(GCOV_CFLAGS) -I$(top_srcdir)
libevdev_la_SOURCES = \
libevdev.h \
libevdev-int.h \
libevdev-util.h \
libevdev-uinput.c \
libevdev-uinput.h \
libevdev-uinput-int.h \
libevdev.c
libevdev_la_LDFLAGS = \
-version-info $(LIBEVDEV_LT_VERSION) \
-export-symbols-regex '^libevdev_|^LIBEVDEV_' \
$(GCOV_LDFLAGS) \
$(GNU_LD_FLAGS)
libevdevincludedir = $(includedir)/libevdev-1.0/libevdev
libevdevinclude_HEADERS = libevdev.h libevdev-uinput.h
event-names.h: Makefile make-event-names.py
$(srcdir)/make-event-names.py --output=c > $@
EXTRA_DIST = make-event-names.py
CLEANFILES = event-names.h
BUILT_SOURCES = event-names.h
# gcov leaves it's mess in this directory too
clean-local:
@rm -f *.gcno
|