mirror of
https://github.com/samba-team/samba.git
synced 2025-02-23 09:57:40 +03:00
18 lines
494 B
Python
18 lines
494 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_MODULE('samba_tool_drs',
|
|
source='drs/drs.c drs/drs_bind.c drs/drs_kcc.c drs/drs_replicate.c drs/drs_showrepl.c',
|
|
autoproto='drs/drs_proto.h',
|
|
subsystem='samba-tool',
|
|
deps='LIBCLI_DRSUAPI ldb ldbsamba',
|
|
internal_module=True
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('samba-tool',
|
|
source='samba_tool.c password.c vampire.c gpo.c',
|
|
autoproto='proto.h',
|
|
deps='samba-hostconfig samba-util samba-net popt POPT_SAMBA POPT_CREDENTIALS samba_tool_drs policy auth',
|
|
pyembed=True
|
|
)
|