Home | History | Annotate | Line # | Download | only in libnet
Makefile revision 1.23
      1 #	$NetBSD: Makefile,v 1.23 2015/04/23 14:49:26 pooka Exp $
      2 #
      3 
      4 .include <bsd.init.mk>
      5 
      6 .PATH:	${.CURDIR}/../../../../net ${.CURDIR}/../../../../compat/common
      7 
      8 LIB=	rumpnet_net
      9 
     10 # iffy stuff
     11 SRCS=	if.c if_loop.c route.c rtsock.c raw_usrreq.c			\
     12 	raw_cb.c if_media.c link_proto.c net_stats.c if_ethersubr.c
     13 SRCS+=	if_43.c pfil.c
     14 SRCS+=	net_component.c
     15 
     16 .if !empty(RUMP_NBCOMPAT:M50)
     17 SRCS+=	rtsock_50.c uipc_syscalls_50.c
     18 .endif
     19 
     20 CPPFLAGS+=	-I${.CURDIR}/opt -I${.CURDIR}/../libnetinet/opt
     21 
     22 .include "${.CURDIR}/../libnetinet/Makefile.inc"
     23 .include "${.CURDIR}/../libnetinet6/Makefile.inc"
     24 .include "${.CURDIR}/../libnetmpls/Makefile.inc"
     25 
     26 .include <bsd.lib.mk>
     27 .include <bsd.klinks.mk>
     28