Home | History | Annotate | Line # | Download | only in librumpres
Makefile revision 1.4
      1  1.4     lukem # $NetBSD: Makefile,v 1.4 2023/06/03 09:09:10 lukem Exp $
      2  1.1  christos 
      3  1.1  christos USE_FORT?=	yes
      4  1.1  christos USE_SHLIBDIR=   yes
      5  1.3       nia NOFULLRELRO=	yes
      6  1.1  christos 
      7  1.1  christos .include <bsd.own.mk>
      8  1.1  christos 
      9  1.1  christos LIB=	rumpres
     10  1.1  christos 
     11  1.1  christos SHLIB_MAJOR=0
     12  1.1  christos SHLIB_MINOR=0
     13  1.1  christos 
     14  1.1  christos LIBDPLIBS+=     rumpclient    ${.CURDIR}/../librumpclient
     15  1.1  christos 
     16  1.1  christos .if ${USE_INET6} != "no"
     17  1.1  christos CPPFLAGS+=      -DINET6
     18  1.1  christos .endif
     19  1.1  christos 
     20  1.1  christos .PATH:		${.CURDIR}/../libc/net
     21  1.1  christos SRCS=		getaddrinfo.c getifaddrs.c getnameinfo.c
     22  1.1  christos SRCS+=		if_indextoname.c if_nametoindex.c
     23  1.1  christos #SRCS+=		gethnamaddr.c sethostent.c
     24  1.1  christos CPPFLAGS+= 	-DRUMP_ACTION
     25  1.1  christos 
     26  1.4     lukem COPTS.getaddrinfo.c+=	${CC_WNO_STRINGOP_OVERFLOW}
     27  1.2       mrg 
     28  1.1  christos .include <bsd.lib.mk>
     29