2011-03-05 02:14:46 +03:00
|
|
|
include $(top_srcdir)/config/Rules.am
|
|
|
|
|
|
|
|
#
|
|
|
|
# Ignore the prefix for the mount helper. It must be installed in /sbin/
|
|
|
|
# because this path is hardcoded in the mount(8) for security reasons.
|
2017-12-18 01:14:07 +03:00
|
|
|
# However, if needed, the configure option --with-mounthelperdir= can be used
|
|
|
|
# to override the default install location.
|
2011-03-05 02:14:46 +03:00
|
|
|
#
|
2014-08-29 22:16:41 +04:00
|
|
|
sbindir=$(mounthelperdir)
|
2011-03-05 02:14:46 +03:00
|
|
|
sbin_PROGRAMS = mount.zfs
|
|
|
|
|
|
|
|
mount_zfs_SOURCES = \
|
2014-06-10 01:55:31 +04:00
|
|
|
mount_zfs.c
|
2011-03-05 02:14:46 +03:00
|
|
|
|
|
|
|
mount_zfs_LDADD = \
|
2020-07-06 23:01:29 +03:00
|
|
|
$(abs_top_builddir)/lib/libzfs/libzfs.la \
|
|
|
|
$(abs_top_builddir)/lib/libzfs_core/libzfs_core.la \
|
|
|
|
$(abs_top_builddir)/lib/libnvpair/libnvpair.la
|
2020-07-06 04:08:40 +03:00
|
|
|
|
|
|
|
mount_zfs_LDADD += $(LTLIBINTL)
|