mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
211bf1ea17
This was left over from the automatic conversion of the config.mk files
19 lines
501 B
Python
19 lines
501 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_MODULE('net_drs',
|
|
source='drs/net_drs.c drs/net_drs_bind.c drs/net_drs_kcc.c drs/net_drs_replicate.c drs/net_drs_showrepl.c',
|
|
autoproto='drs/net_drs_proto.h',
|
|
subsystem='net',
|
|
deps='LIBCLI_DRSUAPI ldb',
|
|
internal_module=True
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('net',
|
|
source='net.c net_password.c net_join.c net_vampire.c',
|
|
autoproto='net_proto.h',
|
|
deps='LIBSAMBA-HOSTCONFIG LIBSAMBA-UTIL LIBSAMBA-NET popt POPT_SAMBA POPT_CREDENTIALS net_drs',
|
|
needs_python=True
|
|
)
|
|
|