1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00
samba-mirror/source4/lib/socket/wscript_build

30 lines
666 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
2010-10-23 23:36:32 +02:00
bld.SAMBA_LIBRARY('libnetif',
source='interface.c netif.c',
autoproto='netif_proto.h',
deps='LIBSAMBA-UTIL',
private_library=True
)
bld.SAMBA_MODULE('socket_ip',
2010-10-23 23:36:32 +02:00
source='socket_ip.c',
subsystem='samba_socket',
deps='LIBSAMBA-ERRORS',
internal_module=True
)
bld.SAMBA_MODULE('socket_unix',
2010-10-23 23:36:32 +02:00
source='socket_unix.c',
subsystem='samba_socket',
deps='talloc',
internal_module=True
)
bld.SAMBA_SUBSYSTEM('samba_socket',
2010-10-23 23:36:32 +02:00
source='socket.c access.c connect_multi.c connect.c',
public_deps='talloc LIBTSOCKET',
deps='LIBCLI_COMPOSITE LIBCLI_RESOLVE socket_ip socket_unix'
)