blob: 98d6e4e0f8733e970a10278f19ecae7b4f0d916e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
LIBUDEV_CURRENT=3
LIBUDEV_REVISION=0
LIBUDEV_AGE=2
define move-to-rootlibdir
if test "$(libdir)" != "$(rootlibdir)"; then \
$(MKDIR_P) $(DESTDIR)$(rootlibdir) && \
so_img_name=$$(readlink $(DESTDIR)$(libdir)/$$libname) && \
so_img_rel_target_prefix=$$(echo $(libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g') && \
$(LN_S) -f $$so_img_rel_target_prefix$(rootlibdir)/$$so_img_name $(DESTDIR)$(libdir)/$$libname && \
mv $(DESTDIR)$(libdir)/$$libname.* $(DESTDIR)$(rootlibdir); \
fi
endef
AM_CPPFLAGS = \
-include $(top_builddir)/config.h \
-DUDEV_CONF_FILE=\"$(udevconffile)\" \
-DUDEV_HWDB_BIN=\"$(udevhwdbbin)\" \
-DUDEV_VERSION=$(UDEV_VERSION) \
-I $(top_srcdir)/src/udev
lib_LTLIBRARIES = \
libudev.la
libudev_la_SOURCES =\
libudev.c \
libudev-list.c \
libudev-util.c \
libudev-device.c \
libudev-enumerate.c \
libudev-monitor.c \
libudev-queue.c \
libudev-hwdb.c \
cgroup-util.c \
conf-files.c \
exit-status.c \
hashmap.c \
log.c \
path-util.c \
set.c \
strbuf.c \
strv.c \
util.c
noinst_HEADERS = \
libudev-hwdb-def.h \
libudev-private.h \
cgroup-util.h \
conf-files.h \
def.h \
exit-status.h \
hashmap.h \
ioprio.h \
log.h \
macro.h \
missing.h \
path-util.h \
set.h \
socket-util.h \
sparse-endian.h \
strbuf.h \
strv.h \
util.h
include_HEADERS = \
libudev.h
libudev_la_LDFLAGS = \
$(AM_LDFLAGS) \
-version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \
-Wl,--version-script=$(top_srcdir)/src/libudev/libudev.sym
libudev_private_la_SOURCES =\
libudev-device-private.c \
libudev-queue-private.c
libudev_private_la_LIBADD =\
libudev.la
noinst_LTLIBRARIES = \
libudev-private.la
pkgconfiglib_DATA = \
libudev.pc
EXTRA_DIST = \
libudev.pc.in \
libudev.sym
CLEANFILES = \
libudev.pc
install-exec-hook:
libname=libudev.so && $(move-to-rootlibdir)
uninstall-hook:
rm -f $(DESTDIR)$(rootlibdir)/libudev.so*
|