diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-03 16:01:58 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-03 16:25:38 +0200 |
commit | 8e5a9e7721a966ce1491f727d25ab3f0b8e8fa58 (patch) | |
tree | 3b899b459beba8f22a68b1faa2038f066f4e7197 /source4/heimdal_build | |
parent | 3c1eca124e791207d3afa9511d9a9201dfd933b7 (diff) | |
download | samba-8e5a9e7721a966ce1491f727d25ab3f0b8e8fa58.tar.gz samba-8e5a9e7721a966ce1491f727d25ab3f0b8e8fa58.tar.bz2 samba-8e5a9e7721a966ce1491f727d25ab3f0b8e8fa58.zip |
heimdal: Move autoproto code to heimdal_build.
Diffstat (limited to 'source4/heimdal_build')
-rw-r--r-- | source4/heimdal_build/wscript_build | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/source4/heimdal_build/wscript_build b/source4/heimdal_build/wscript_build index 2c7b01378d..39438875bc 100644 --- a/source4/heimdal_build/wscript_build +++ b/source4/heimdal_build/wscript_build @@ -1,6 +1,31 @@ #!/usr/bin/env python import Build +import os +from samba_utils import SET_TARGET_TYPE + +def HEIMDAL_AUTOPROTO(bld, header, source, options=None, group='prototypes'): + '''rule for heimdal prototype generation''' + bld.SET_BUILD_GROUP(group) + if options is None: + options='-q -P comment -o' + SET_TARGET_TYPE(bld, header, 'PROTOTYPE') + t = bld(rule='${PERL} ${HEIMDAL}/cf/make-proto.pl ${OPTIONS} ${TGT[0].abspath(env)} ${SRC}', + source=source, + target=header, + on_results=True, + ext_out='.c', + before='cc') + t.env.HEIMDAL = os.path.join(bld.srcnode.abspath(), 'source4/heimdal') + t.env.OPTIONS = options +Build.BuildContext.HEIMDAL_AUTOPROTO = HEIMDAL_AUTOPROTO + + +def HEIMDAL_AUTOPROTO_PRIVATE(bld, header, source): + '''rule for private heimdal prototype generation''' + bld.HEIMDAL_AUTOPROTO(header, source, options='-q -P comment -p') +Build.BuildContext.HEIMDAL_AUTOPROTO_PRIVATE = HEIMDAL_AUTOPROTO_PRIVATE + def HEIMDAL_LIBRARY(bld, libname, source, deps, includes='', |