ccan: we're subsystems, not a library.
[samba.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)