1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/examples/libsmbclient/wscript_build
Andrew Bartlett 3167b95cad examples: rework wscript to use a loop
I think this format is more compact and easier to understand.

Andrew Bartlett
2011-10-28 13:10:27 +02:00

26 lines
564 B
Python

#!/usr/bin/env python
names = ['testsmbc',
'testacl',
'testacl2',
'testacl3',
'testbrowse',
'testbrowse2',
'teststat',
'teststat2',
'teststat3',
'teststatvfs',
'testfstatvfs',
'testtruncate',
'testchmod',
'testutime',
'testread',
'testwrite',
'testctx']
for name in names:
bld.SAMBA_BINARY(name,
source='%s.c' % name,
deps='smbclient',
install=False)