mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
292fe74971
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Thu Aug 18 22:16:38 CEST 2011 on sn-devel-104
24 lines
631 B
Python
24 lines
631 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('cmdline-credentials',
|
|
source='credentials.c',
|
|
autoproto='credentials.h',
|
|
public_deps='samba-credentials popt',
|
|
private_library=True)
|
|
|
|
bld.SAMBA_SUBSYSTEM('POPT_SAMBA',
|
|
source='popt_common.c',
|
|
public_deps='popt',
|
|
public_headers='popt_common.h:popt.h',
|
|
header_path='samba',
|
|
deps='talloc samba-hostconfig'
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('POPT_CREDENTIALS',
|
|
source='popt_credentials.c',
|
|
autoproto='popt_credentials.h',
|
|
public_deps='samba-credentials CREDENTIALS_SECRETS cmdline-credentials popt',
|
|
deps='samba-util'
|
|
)
|
|
|