mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
182c9b1584
Automake like variables with *exec* in the directory names, to decide, that it isn't *data*: http://www.gnu.org/software/hello/manual/automake/The-Two-Parts-of-Install.html#The-Two-Parts-of-Install
57 lines
1.2 KiB
Makefile
57 lines
1.2 KiB
Makefile
include $(top_srcdir)/Makefile.am.inc
|
|
|
|
SUBDIRS = \
|
|
docs
|
|
|
|
noinst_PROGRAMS = \
|
|
test-libudev
|
|
|
|
test_libudev_SOURCES = \
|
|
test-libudev.c
|
|
|
|
test_libudev_LDADD = \
|
|
libudev.la
|
|
|
|
lib_LTLIBRARIES = \
|
|
libudev.la
|
|
|
|
include_HEADERS =\
|
|
libudev.h
|
|
|
|
libudev_la_SOURCES =\
|
|
libudev-private.h \
|
|
libudev.c \
|
|
libudev-list.c \
|
|
libudev-util.c \
|
|
libudev-device.c \
|
|
libudev-enumerate.c \
|
|
libudev-monitor.c \
|
|
libudev-queue.c
|
|
|
|
LT_CURRENT=4
|
|
LT_REVISION=1
|
|
LT_AGE=4
|
|
libudev_la_LDFLAGS = \
|
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
|
-export-symbols $(top_srcdir)/libudev/exported_symbols
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = \
|
|
libudev.pc
|
|
|
|
EXTRA_DIST = \
|
|
exported_symbols
|
|
|
|
# move lib from $(libdir) to $(rootlib_execdir) and update devel link, if needed
|
|
install-exec-hook:
|
|
if test "$(libdir)" != "$(rootlib_execdir)"; then \
|
|
mkdir -p $(DESTDIR)$(rootlib_execdir) && \
|
|
so_img_name=$$(readlink $(DESTDIR)$(libdir)/libudev.so) && \
|
|
so_img_rel_target_prefix=$$(echo $(libdir) | sed 's,\(^/\|\)[^/][^/]*,..,g') && \
|
|
ln -sf $$so_img_rel_target_prefix$(rootlib_execdir)/$$so_img_name $(DESTDIR)$(libdir)/libudev.so && \
|
|
mv $(DESTDIR)$(libdir)/libudev.so.* $(DESTDIR)$(rootlib_execdir); \
|
|
fi
|
|
|
|
uninstall-hook:
|
|
rm -f $(DESTDIR)$(rootlib_execdir)/libudev.so*
|