mirror of
https://github.com/samba-team/samba.git
synced 2025-03-05 20:58:40 +03:00
- the stacking of modules - finding the modules private data - hide the ntvfs details from the calling layer - I set NTVFS_INTERFACE_VERSION 0 till we are closer to release (because we need to solve some async problems with the module stacking) metze
63 lines
1.5 KiB
Makefile
63 lines
1.5 KiB
Makefile
# NTVFS Server subsystem
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_cifs
|
|
[MODULE::ntvfs_cifs]
|
|
INIT_OBJ_FILES = \
|
|
ntvfs/cifs/vfs_cifs.o
|
|
REQUIRED_SUBSYSTEMS = \
|
|
LIBCLI
|
|
# End MODULE ntvfs_cifs
|
|
################################################
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_simple
|
|
[MODULE::ntvfs_simple]
|
|
INIT_OBJ_FILES = \
|
|
ntvfs/simple/vfs_simple.o
|
|
ADD_OBJ_FILES = \
|
|
ntvfs/simple/svfs_util.o
|
|
# End MODULE ntvfs_cifs
|
|
################################################
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_print
|
|
[MODULE::ntvfs_print]
|
|
INIT_OBJ_FILES = \
|
|
ntvfs/print/vfs_print.o
|
|
# End MODULE ntvfs_print
|
|
################################################
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_ipc
|
|
[MODULE::ntvfs_ipc]
|
|
INIT_OBJ_FILES = \
|
|
ntvfs/ipc/vfs_ipc.o \
|
|
ntvfs/ipc/ipc_rap.o \
|
|
ntvfs/ipc/rap_server.o
|
|
# End MODULE ntvfs_ipc
|
|
################################################
|
|
|
|
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_nbench
|
|
[MODULE::ntvfs_nbench]
|
|
INIT_OBJ_FILES = \
|
|
ntvfs/nbench/vfs_nbench.o
|
|
# End MODULE ntvfs_nbench
|
|
################################################
|
|
|
|
################################################
|
|
# Start SUBSYSTEM NTVFS
|
|
[SUBSYSTEM::NTVFS]
|
|
INIT_OBJ_FILES = \
|
|
ntvfs/ntvfs_base.o
|
|
ADD_OBJ_FILES = \
|
|
ntvfs/ntvfs_generic.o \
|
|
ntvfs/ntvfs_interface.o \
|
|
ntvfs/ntvfs_util.o
|
|
#
|
|
# End SUBSYSTEM NTVFS
|
|
################################################
|