summaryrefslogtreecommitdiffstats
path: root/source4/lib/socket/wscript_build
blob: c10970d17aa36cd73d904d86bfb01201ad1a2322 (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
27
28
29
#!/usr/bin/env python

bld.SAMBA_LIBRARY('netif',
                  source='interface.c',
                  deps='samba-util interfaces samba-hostconfig',
                  private_library=True,
                  autoproto='netif_proto.h'
                  )

bld.SAMBA_MODULE('socket_ip',
    source='socket_ip.c',
    subsystem='samba_socket',
    deps='errors',
    internal_module=True
    )

bld.SAMBA_MODULE('socket_unix',
    source='socket_unix.c',
    subsystem='samba_socket',
    deps='talloc',
    internal_module=True
    )

bld.SAMBA_SUBSYSTEM('samba_socket',
    source='socket.c access.c connect_multi.c connect.c',
    public_deps='talloc LIBTSOCKET',
    deps='LIBCLI_COMPOSITE LIBCLI_RESOLVE socket_ip socket_unix'
    )