mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
1ada710840
Never install generated prototype files. It's easier to break the
API when using them and they're not easily readable for 3rd party users.
Conflicts:
source/auth/config.mk
source/auth/credentials/config.mk
source/auth/gensec/config.mk
source/build/smb_build/config_mk.pm
source/build/smb_build/main.pl
source/build/smb_build/makefile.pm
source/dsdb/config.mk
source/lib/charset/config.mk
source/lib/tdr/config.mk
source/lib/util/config.mk
source/libcli/config.mk
source/libcli/ldap/config.mk
source/librpc/config.mk
source/param/config.mk
source/rpc_server/config.mk
source/torture/config.mk
(This used to be commit 6c659689ed
)
94 lines
2.3 KiB
Makefile
94 lines
2.3 KiB
Makefile
# NTVFS Server subsystem
|
|
mkinclude posix/config.mk
|
|
mkinclude common/config.mk
|
|
mkinclude unixuid/config.mk
|
|
mkinclude sysdep/config.mk
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_cifs
|
|
[MODULE::ntvfs_cifs]
|
|
INIT_FUNCTION = ntvfs_cifs_init
|
|
SUBSYSTEM = ntvfs
|
|
OBJ_FILES = \
|
|
cifs/vfs_cifs.o
|
|
PRIVATE_DEPENDENCIES = \
|
|
LIBCLI_SMB LIBCLI_RAW
|
|
# 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_simple
|
|
################################################
|
|
|
|
################################################
|
|
# Start MODULE ntvfs_cifsposix
|
|
[MODULE::ntvfs_cifsposix]
|
|
#ENABLE = NO
|
|
INIT_FUNCTION = ntvfs_cifs_posix_init
|
|
SUBSYSTEM = ntvfs
|
|
PRIVATE_PROTO_HEADER = cifs_posix_cli/proto.h
|
|
OBJ_FILES = \
|
|
cifs_posix_cli/vfs_cifs_posix.o \
|
|
cifs_posix_cli/svfs_util.o
|
|
# End MODULE ntvfs_cifsposix
|
|
################################################
|
|
|
|
################################################
|
|
# 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
|
|
PRIVATE_DEPENDENCIES = dcerpc_server DCERPC_COMMON
|
|
# 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
|
|
[SUBSYSTEM::ntvfs]
|
|
PRIVATE_PROTO_HEADER = ntvfs_proto.h
|
|
OBJ_FILES = \
|
|
ntvfs_base.o \
|
|
ntvfs_generic.o \
|
|
ntvfs_interface.o \
|
|
ntvfs_util.o
|
|
|
|
PUBLIC_HEADERS += ntvfs/ntvfs.h
|
|
#
|
|
# End SUBSYSTEM NTVFS
|
|
################################################
|