mirror of
https://github.com/samba-team/samba.git
synced 2025-11-01 16:23:49 +03:00
- VERSION: should contain the current version. Will be made part of the filename. - SO_VERSION: should contain the latest version that this on is compatible to. Will be used for setting the soname of the shared library. Fix sonames and use them on platforms that support them Remove symlinking code. ldconfig will take care of creating the symlinks now that we set the soname.
32 lines
960 B
Makefile
32 lines
960 B
Makefile
#################################
|
|
# Start SUBSYSTEM LIBNET
|
|
[LIBRARY::LIBNET]
|
|
VERSION = 0.0.1
|
|
SO_VERSION = 0.0.1
|
|
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 \
|
|
userinfo.o \
|
|
userman.o \
|
|
domain.o
|
|
REQUIRED_SUBSYSTEMS = 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
|
|
# End SUBSYSTEM LIBNET
|
|
#################################
|