mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
645fb9cc21
Add the initial support for the 'smbshare' option using the existing libshare infrastructure. Because this implementation relies on usershares samba version 3.0.23 is required. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #493
16 lines
412 B
Makefile
16 lines
412 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
noinst_LTLIBRARIES = libshare.la
|
|
|
|
libshare_la_SOURCES = \
|
|
$(top_srcdir)/lib/libshare/libshare_impl.h \
|
|
$(top_srcdir)/lib/libshare/libshare.c \
|
|
$(top_srcdir)/lib/libshare/nfs.c \
|
|
$(top_srcdir)/lib/libshare/nfs.h \
|
|
$(top_srcdir)/lib/libshare/smb.c \
|
|
$(top_srcdir)/lib/libshare/smb.h
|