1include $(top_srcdir)/config/Rules.am
2
3#
4# Ignore the prefix for the mount helper.  It must be installed in /sbin/
5# because this path is hardcoded in the mount(8) for security reasons.
6# However, if needed, the configure option --with-mounthelperdir= can be used
7# to override the default install location.
8#
9sbindir=$(mounthelperdir)
10sbin_PROGRAMS = mount.zfs
11
12mount_zfs_SOURCES = \
13	mount_zfs.c
14
15mount_zfs_LDADD = \
16	$(abs_top_builddir)/lib/libzfs/libzfs.la \
17	$(abs_top_builddir)/lib/libzfs_core/libzfs_core.la \
18	$(abs_top_builddir)/lib/libnvpair/libnvpair.la
19
20mount_zfs_LDADD += $(LTLIBINTL)
21