The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/krpc/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/10.1/sys/modules/krpc/Makefile 269398 2014-08-01 21:10:41Z rmacklem $
    2 
    3 .PATH: ${.CURDIR}/../../rpc ${.CURDIR}/../../xdr
    4 KMOD=   krpc
    5 SRCS=   auth_none.c \
    6         auth_unix.c \
    7         authunix_prot.c \
    8         clnt_bck.c \
    9         clnt_dg.c \
   10         clnt_rc.c \
   11         clnt_vc.c \
   12         getnetconfig.c \
   13         rpc_callmsg.c \
   14         rpc_generic.c \
   15         rpc_prot.c \
   16         rpcb_clnt.c \
   17         rpcb_prot.c \
   18         replay.c \
   19         svc.c \
   20         svc_auth.c \
   21         svc_auth_unix.c \
   22         svc_dg.c \
   23         svc_generic.c \
   24         svc_vc.c \
   25 
   26 SRCS+=  xdr.c \
   27         xdr_array.c \
   28         xdr_mbuf.c \
   29         xdr_mem.c \
   30         xdr_reference.c \
   31         xdr_sizeof.c
   32 
   33 SRCS+=  opt_inet6.h
   34 
   35 .if !defined(KERNBUILDDIR)
   36 NFS_INET6?=     1       # 0/1 - requires INET6 to be configured in kernel
   37 
   38 .if ${NFS_INET6} > 0
   39 opt_inet6.h:
   40         echo "#define INET6 1" > ${.TARGET}
   41 .endif
   42 .endif
   43 
   44 .include <bsd.kmod.mk>

Cache object: b3f01a88c17b3fedac9bbe9290941668


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.