summaryrefslogtreecommitdiffstats
path: root/examples/libsmbclient/wscript_build
blob: c58a5b9e5a3b0c8dfe7cf7ab6dce9ccd881a1145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python

names = ['testsmbc',
         'testacl',
         'testacl2',
         'testacl3',
         'testbrowse',
         'testbrowse2',
         'testnotify',
         'teststat',
         'teststat2',
         'teststat3',
         'teststatvfs',
         'testfstatvfs',
         'testtruncate',
         'testchmod',
         'testutime',
         'testread',
         'testwrite',
         'testctx']

for name in names:
    bld.SAMBA_BINARY(name,
                     source='%s.c' % name,
                     deps='popt smbclient',
                     install=False)