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