mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
e2d936e0f8
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Giuseppe Di Natale <dinatale2@llnl.gov> Signed-off-by: loli10K <ezomori.nozomu@gmail.com> Closes #6962
22 lines
589 B
Makefile
22 lines
589 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
#
|
|
# 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.
|
|
# However, if needed, the configure option --with-mounthelperdir= can be used
|
|
# to override the default install location.
|
|
#
|
|
sbindir=$(mounthelperdir)
|
|
sbin_PROGRAMS = mount.zfs
|
|
|
|
mount_zfs_SOURCES = \
|
|
mount_zfs.c
|
|
|
|
mount_zfs_LDADD = \
|
|
$(top_builddir)/lib/libnvpair/libnvpair.la \
|
|
$(top_builddir)/lib/libzfs/libzfs.la
|