mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
4e65b33c1d
Update third_party/waf/ to 2.0.4 to bring us closer to Python 3 This change requires a number of changes in buildtools/ too. Signed-off-by: Alexander Bokovoy <ab@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
25 lines
854 B
Python
25 lines
854 B
Python
# waf build tool for building automatic prototypes from C source
|
|
|
|
import os
|
|
from waflib 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.path.abspath(), 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 ='c',
|
|
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
|
|
|