mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
6c81250565
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
25 lines
674 B
Python
25 lines
674 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
from waflib import Logs
|
|
|
|
def build(bld):
|
|
bld.SAMBA_LIBRARY('cmdline',
|
|
source='cmdline.c',
|
|
deps='''
|
|
talloc
|
|
samba-hostconfig
|
|
samba-credentials
|
|
popt
|
|
''',
|
|
private_library=True)
|
|
|
|
bld.SAMBA_SUBSYSTEM('CMDLINE_S3',
|
|
source='cmdline_s3.c',
|
|
deps='cmdline')
|
|
|
|
bld.SAMBA_SUBSYSTEM('CMDLINE_S4',
|
|
source='cmdline_s4.c',
|
|
deps='cmdline')
|