mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
dbbce1a454
Otherwise we can't link this into other libraries Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
21 lines
595 B
Python
21 lines
595 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('clidns',
|
|
source='dns.c resolvconf.c',
|
|
public_deps='LIBTSOCKET tevent-util ndr-standard',
|
|
private_library=True)
|
|
|
|
bld.SAMBA_BINARY('resolvconftest',
|
|
source='resolvconftest.c',
|
|
deps='clidns',
|
|
install=False)
|
|
|
|
bld.SAMBA_SUBSYSTEM('dns_lookup',
|
|
source='dns_lookup.c',
|
|
public_deps='clidns')
|
|
|
|
bld.SAMBA_BINARY('dns_lookuptest',
|
|
source='dns_lookuptest.c',
|
|
deps='dns_lookup',
|
|
install=False)
|