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/8.3/sys/modules/krpc/Makefile 214339 2010-10-25 13:34:55Z attilio $
    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_dg.c \
    9         clnt_rc.c \
   10         clnt_vc.c \
   11         getnetconfig.c \
   12         rpc_callmsg.c \
   13         rpc_generic.c \
   14         rpc_prot.c \
   15         rpcb_clnt.c \
   16         rpcb_prot.c \
   17         replay.c \
   18         svc.c \
   19         svc_auth.c \
   20         svc_auth_unix.c \
   21         svc_dg.c \
   22         svc_generic.c \
   23         svc_vc.c \
   24 
   25 SRCS+=  xdr.c \
   26         xdr_array.c \
   27         xdr_mbuf.c \
   28         xdr_mem.c \
   29         xdr_reference.c \
   30         xdr_sizeof.c
   31 
   32 SRCS+=  opt_inet6.h
   33 
   34 .if !defined(KERNBUILDDIR)
   35 NFS_INET6?=     1       # 0/1 - requires INET6 to be configured in kernel
   36 
   37 .if ${NFS_INET6} > 0
   38 opt_inet6.h:
   39         echo "#define INET6 1" > ${.TARGET}
   40 .endif
   41 .endif
   42 
   43 .include <bsd.kmod.mk>

Cache object: a0f5801c487adc13602414d88f3d3235


[ 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.