mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
211bf1ea17
This was left over from the automatic conversion of the config.mk files
29 lines
630 B
Python
29 lines
630 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_BINARY('ntlm_auth',
|
|
source='ntlm_auth.c',
|
|
manpages='man/ntlm_auth.1',
|
|
deps='LIBSAMBA-HOSTCONFIG LIBSAMBA-UTIL popt POPT_SAMBA POPT_CREDENTIALS gensec LIBCLI_RESOLVE auth ntlm_check MESSAGING LIBEVENTS service',
|
|
needs_python=True
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('setnttoken',
|
|
source='setnttoken.c',
|
|
deps='talloc'
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('testparm',
|
|
source='testparm.c',
|
|
deps='LIBSAMBA-HOSTCONFIG LIBSAMBA-UTIL popt samba_socket POPT_SAMBA LIBCLI_RESOLVE CHARSET'
|
|
)
|
|
|
|
|
|
bld.SAMBA_BINARY('oLschema2ldif',
|
|
source='oLschema2ldif.c',
|
|
manpages='man/oLschema2ldif.1',
|
|
deps='LIBLDB_CMDLINE SAMDB'
|
|
)
|
|
|