2eac1e92233bb872964b8cc6c96f379f85e6d8f6
[nivanova/samba-autobuild/.git] / lib / tdb_compat / wscript
1 #!/usr/bin/env python
2
3 import Options
4
5 def set_options(opt):
6     opt.RECURSE('lib/tdb')
7
8 def configure(conf):
9     conf.RECURSE('lib/tdb')
10
11 def build(bld):
12     bld.RECURSE('lib/tdb')
13     bld.SAMBA_LIBRARY('tdb_compat',
14                       source='tdb_compat.c',
15                       deps='replace tdb',
16                       private_library=True)