2 from samba_utils import os_path_relpath
4 def build_test_headers(task):
5 '''symlink a header in the build tree'''
6 tgt = task.outputs[0].bldpath(task.env)
7 f = open(tgt, mode='w')
8 f.write('/* generated header test */\n')
9 hlist = task.env.public_headers_list[:]
12 f.write('#include "%s"\n' % os.path.normpath(h))
15 relpath1 = os_path_relpath(bld.srcnode.abspath(), bld.curdir)
17 for h in bld.env.public_headers_list:
18 public_headers.append(os.path.join(relpath1, bld.env.build_public_headers, h))
20 bld.SAMBA_GENERATOR('test_headers.h',
22 rule=build_test_headers,
23 source=public_headers,
24 target='test_headers.h')
27 for lib in ['talloc', 'tevent', 'tdb', 'ldb' ]:
28 ename = 'CPPPATH_%s' % lib.upper()
29 for p in bld.env[ename]:
30 cflags += bld.env.CPPPATH_ST % p + ' '
32 if bld.env.DEVELOPER_MODE:
33 bld.SAMBA_BINARY('test_headers',
34 source='test_headers.c',
35 includes="#include/public",
40 use_global_deps=False,