1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00
samba-mirror/buildtools/wafsamba/samba_patterns.py

32 lines
886 B
Python
Raw Normal View History

# a waf tool to add extension based build patterns for Samba
import Task
from TaskGen import extension
from samba_utils import *
from wafsamba import samba_version_file
def write_version_header(task):
'''print version.h contents'''
src = task.inputs[0].srcpath(task.env)
tgt = task.outputs[0].bldpath(task.env)
have_git = 'GIT' in task.env
version = samba_version_file(src, have_git=have_git)
string = str(version)
f = open(tgt, 'w')
s = f.write(string)
f.close()
return 0
2010-03-07 10:59:01 +11:00
def SAMBA_MKVERSION(bld, target):
'''generate the version.h header for Samba'''
t = bld.SAMBA_GENERATOR('VERSION',
rule=write_version_header,
source= 'VERSION',
target=target,
always=True)
2010-03-07 10:59:01 +11:00
Build.BuildContext.SAMBA_MKVERSION = SAMBA_MKVERSION