1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/lib/tdb_compat/wscript

17 lines
335 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
import Options
def set_options(opt):
opt.RECURSE('lib/tdb')
def configure(conf):
conf.RECURSE('lib/tdb')
def build(bld):
bld.RECURSE('lib/tdb')
bld.SAMBA_LIBRARY('tdb_compat',
source='tdb_compat.c',
deps='replace tdb',
private_library=True)