mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
ceb6e9717b
(This used to be commit 2c74698032
)
86 lines
2.0 KiB
Makefile
86 lines
2.0 KiB
Makefile
# NTVFS Server subsystem
|
|
include posix/config.mk
|
|
include unixuid/config.mk
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_cifs
|
|
[MODULE::ntvfs_cifs]
|
|
INIT_FUNCTION = ntvfs_cifs_init
|
|
SUBSYSTEM = ntvfs
|
|
OBJ_FILES = \
|
|
cifs/vfs_cifs.o
|
|
REQUIRED_SUBSYSTEMS = \
|
|
LIBCLI
|
|
# End MODULE ntvfs_cifs
|
|
################################################
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_simple
|
|
[MODULE::ntvfs_simple]
|
|
INIT_FUNCTION = ntvfs_simple_init
|
|
SUBSYSTEM = ntvfs
|
|
PRIVATE_PROTO_HEADER = simple/proto.h
|
|
OBJ_FILES = \
|
|
simple/vfs_simple.o \
|
|
simple/svfs_util.o
|
|
# End MODULE ntvfs_cifs
|
|
################################################
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_print
|
|
[MODULE::ntvfs_print]
|
|
INIT_FUNCTION = ntvfs_print_init
|
|
SUBSYSTEM = ntvfs
|
|
OBJ_FILES = \
|
|
print/vfs_print.o
|
|
# End MODULE ntvfs_print
|
|
################################################
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_ipc
|
|
[MODULE::ntvfs_ipc]
|
|
SUBSYSTEM = ntvfs
|
|
INIT_FUNCTION = ntvfs_ipc_init
|
|
PRIVATE_PROTO_HEADER = ipc/proto.h
|
|
OBJ_FILES = \
|
|
ipc/vfs_ipc.o \
|
|
ipc/ipc_rap.o \
|
|
ipc/rap_server.o
|
|
# End MODULE ntvfs_ipc
|
|
################################################
|
|
|
|
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_nbench
|
|
[MODULE::ntvfs_nbench]
|
|
SUBSYSTEM = ntvfs
|
|
INIT_FUNCTION = ntvfs_nbench_init
|
|
OBJ_FILES = \
|
|
nbench/vfs_nbench.o
|
|
# End MODULE ntvfs_nbench
|
|
################################################
|
|
|
|
|
|
################################################
|
|
# Start SUBSYSTEM NTVFS
|
|
[LIBRARY::ntvfs]
|
|
PUBLIC_HEADERS = ntvfs.h
|
|
MAJOR_VERSION = 0
|
|
MINOR_VERSION = 0
|
|
DESCRIPTION = Virtual File System with NTFS semantics
|
|
PRIVATE_PROTO_HEADER = ntvfs_proto.h
|
|
RELEASE_VERSION = 1
|
|
OBJ_FILES = \
|
|
ntvfs_base.o \
|
|
ntvfs_generic.o \
|
|
ntvfs_interface.o \
|
|
ntvfs_util.o \
|
|
common/brlock.o \
|
|
common/opendb.o \
|
|
common/sidmap.o
|
|
REQUIRED_SUBSYSTEMS = NDR_OPENDB
|
|
#
|
|
# End SUBSYSTEM NTVFS
|
|
################################################
|