mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
24 lines
629 B
Plaintext
24 lines
629 B
Plaintext
|
#!/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
|
||
|
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')
|