mirror of
https://github.com/samba-team/samba.git
synced 2025-01-24 02:04:21 +03:00
16b5eac38d
a bit more smart and more aware of what libnet_context can offer. The context is a help when some of the arguments are not passed (programmer counts on using sensible defaults) and stores some of results so that similar subsequent calls don't need to reopen some of policy handles, pipes, etc. again. It also helps to hide some of details the library user don't really want to know much about. Also, change domain open function to be part of public api, as it is going to be used in ejsnet interface. Note, this is work in progress. Comments are welcome. rafal (This used to be commit 1ed80c594c2f466e364a11194d6fdc30ac4a8f27)
28 lines
852 B
Makefile
28 lines
852 B
Makefile
[LIBRARY::LIBSAMBA-NET]
|
|
VERSION = 0.0.1
|
|
SO_VERSION = 0
|
|
DESCRIPTION = User-friendly access to Samba interfaces
|
|
PRIVATE_PROTO_HEADER = libnet_proto.h
|
|
PUBLIC_HEADERS = libnet.h libnet_join.h libnet_lookup.h libnet_passwd.h \
|
|
libnet_rpc.h libnet_share.h libnet_time.h \
|
|
libnet_user.h libnet_site.h libnet_vampire.h \
|
|
userinfo.h userman.h
|
|
OBJ_FILES = \
|
|
libnet.o \
|
|
libnet_passwd.o \
|
|
libnet_time.o \
|
|
libnet_rpc.o \
|
|
libnet_join.o \
|
|
libnet_site.o \
|
|
libnet_vampire.o \
|
|
libnet_samdump.o \
|
|
libnet_samdump_keytab.o \
|
|
libnet_samsync_ldb.o \
|
|
libnet_user.o \
|
|
libnet_share.o \
|
|
libnet_lookup.o \
|
|
libnet_domain.o \
|
|
userinfo.o \
|
|
userman.o
|
|
PUBLIC_DEPENDENCIES = dcerpc RPC_NDR_SAMR RPC_NDR_LSA RPC_NDR_SRVSVC RPC_NDR_DRSUAPI LIBCLI_COMPOSITE LIBCLI_RESOLVE LIBCLI_FINDDCS LIBSAMBA3 LIBCLI_CLDAP LIBCLI_FINDDCS gensec_schannel
|