mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
2666d06f29
The 'import *' statements make it more difficult to reason about the modules and tends to conceal bugs. These changes enable running pyflakes against most of the build scripts. Signed-off-by: Thomas Nagy <tnagy@waf.io> Reviewed-by: Andrew Bartlet <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Wed Oct 28 12:52:17 CET 2015 on sn-devel-104
25 lines
835 B
Python
25 lines
835 B
Python
# waf build tool for building automatic prototypes from C source
|
|
|
|
import os
|
|
import Build
|
|
from samba_utils import SET_TARGET_TYPE, os_path_relpath
|
|
|
|
def SAMBA_AUTOPROTO(bld, header, source):
|
|
'''rule for samba prototype generation'''
|
|
bld.SET_BUILD_GROUP('prototypes')
|
|
relpath = os_path_relpath(bld.curdir, bld.srcnode.abspath())
|
|
name = os.path.join(relpath, header)
|
|
SET_TARGET_TYPE(bld, name, 'PROTOTYPE')
|
|
t = bld(
|
|
name = name,
|
|
source = source,
|
|
target = header,
|
|
update_outputs=True,
|
|
ext_out='.c',
|
|
before ='cc',
|
|
rule = '${PERL} "${SCRIPT}/mkproto.pl" --srcdir=.. --builddir=. --public=/dev/null --private="${TGT}" ${SRC}'
|
|
)
|
|
t.env.SCRIPT = os.path.join(bld.srcnode.abspath(), 'source4/script')
|
|
Build.BuildContext.SAMBA_AUTOPROTO = SAMBA_AUTOPROTO
|
|
|