1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

build: allow selection of build group in HEIMDAL_AUTOPROTO()

This commit is contained in:
Andrew Tridgell 2010-03-17 21:54:16 +11:00
parent 8c4e709818
commit 6dcf5563ea
2 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,29 @@
# waf build tool for building automatic prototypes from C source
from TaskGen import taskgen, before
import Build, os, string, Utils
from samba_utils import *
# rule for heimdal prototype generation
def HEIMDAL_AUTOPROTO(bld, header, source, options='-q -P comment -o'):
t = bld(rule='${PERL} -W ../heimdal/cf/make-proto.pl ${OPTIONS} ${TGT[0].abspath(env)} ${SRC}',
source=source,
target=header,
ext_out='.c',
before='cc')
t.env.OPTIONS = options
Build.BuildContext.HEIMDAL_AUTOPROTO = HEIMDAL_AUTOPROTO
# rule for private heimdal prototype generation
def HEIMDAL_AUTOPROTO_PRIVATE(bld, header, source):
bld.HEIMDAL_AUTOPROTO(header, source, options='-q -P comment -p')
Build.BuildContext.HEIMDAL_AUTOPROTO_PRIVATE = HEIMDAL_AUTOPROTO_PRIVATE
# rule for samba prototype generation
def SAMBA_AUTOPROTO(bld, header, source):
print "TODO: add samba autoproto rule"
return
Build.BuildContext.SAMBA_AUTOPROTO = SAMBA_AUTOPROTO

View File

@ -331,7 +331,8 @@ def SAMBA_ERRTABLE(bld, name, source,
bld(
features = 'cc',
source = source,
target = name
target = name,
includes = '# #source4/heimdal_build #source4 #lib/replace'
)
Build.BuildContext.SAMBA_ERRTABLE = SAMBA_ERRTABLE