1# $MirOS: src/lib/libresolv/Makefile,v 1.2 2005/03/06 20:29:21 tg Exp $ 2# $OpenBSD: Makefile,v 1.4 2000/03/02 00:29:51 todd Exp $ 3 4# libresolv no longer needs a special version of the resolver routines. 5# The resolver is always in libc. 6# However, an empty library must exist in case something tries to use it. 7 8NOPIC= yes 9LIB= resolv 10SRCS= nothing.c 11 12# libdl has been merged into libc (stubs) and ld.so (functions); 13# however clueless people write GNU autoconf scripts which break 14# dynamic loading altogether if dlopen() can't be found in libdl 15# (i.e. also if libdl is missing). 16 17afterinstall: 18 -cd ${DESTDIR}${LIBDIR}; ln -f libresolv.a libdl.a 19 20.include <bsd.lib.mk> 21