mirror of
https://github.com/samba-team/samba.git
synced 2025-01-05 09:18:06 +03:00
5f494c424c
Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue May 15 20:17:01 CEST 2012 on sn-devel-104
33 lines
718 B
Python
Executable File
33 lines
718 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_LIBRARY('cli_smb_common',
|
|
source='''
|
|
smb_signing.c smb_seal.c
|
|
smb2_create_blob.c smb2_signing.c
|
|
util.c read_smb.c
|
|
smbXcli_base.c
|
|
smb1cli_trans.c
|
|
smb2cli_session.c
|
|
smb2cli_create.c
|
|
smb2cli_close.c
|
|
smb2cli_read.c
|
|
smb2cli_write.c
|
|
smb2cli_flush.c
|
|
smb2cli_set_info.c
|
|
smb2cli_query_info.c
|
|
smb2cli_query_directory.c
|
|
smb2cli_ioctl.c
|
|
''',
|
|
deps='LIBCRYPTO errors gensec krb5samba LIBASYNC_REQ',
|
|
public_deps='talloc samba-util',
|
|
private_library=True,
|
|
public_headers='''
|
|
smb_common.h smb2_constants.h smb_constants.h
|
|
smb_signing.h smb_seal.h
|
|
smb2_create_blob.h smb2_signing.h
|
|
smb_util.h read_smb.h
|
|
smb_unix_ext.h
|
|
''',
|
|
)
|