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/kgssapi/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$
    2 
    3 .PATH: ${SRCTOP}/sys/kgssapi ${SRCTOP}/sys/rpc/rpcsec_gss
    4 KMOD=   kgssapi
    5 
    6 SRCS=   gss_accept_sec_context.c \
    7         gss_add_oid_set_member.c \
    8         gss_acquire_cred.c \
    9         gss_canonicalize_name.c \
   10         gss_create_empty_oid_set.c \
   11         gss_delete_sec_context.c \
   12         gss_display_status.c \
   13         gss_export_name.c \
   14         gss_get_mic.c \
   15         gss_init_sec_context.c \
   16         gss_impl.c \
   17         gss_import_name.c \
   18         gss_names.c \
   19         gss_pname_to_uid.c \
   20         gss_release_buffer.c \
   21         gss_release_cred.c \
   22         gss_release_name.c \
   23         gss_release_oid_set.c \
   24         gss_set_cred_option.c \
   25         gss_test_oid_set_member.c \
   26         gss_unwrap.c \
   27         gss_verify_mic.c \
   28         gss_wrap.c \
   29         gss_wrap_size_limit.c \
   30         gssd_prot.c
   31 
   32 SRCS+=  rpcsec_gss.c \
   33         rpcsec_gss_conf.c \
   34         rpcsec_gss_misc.c \
   35         rpcsec_gss_prot.c \
   36         svc_rpcsec_gss.c
   37 
   38 SRCS+=          kgss_if.h kgss_if.c
   39 
   40 SRCS+=          gssd.h gssd_xdr.c gssd_clnt.c
   41 CLEANFILES=     gssd.h gssd_xdr.c gssd_clnt.c
   42 
   43 S=              ${SRCTOP}/sys
   44 
   45 gssd.h:         $S/kgssapi/gssd.x
   46         RPCGEN_CPP=${CPP:Q} rpcgen -hM $S/kgssapi/gssd.x | grep -v pthread.h > gssd.h
   47 
   48 gssd_xdr.c:     $S/kgssapi/gssd.x
   49         RPCGEN_CPP=${CPP:Q} rpcgen -c $S/kgssapi/gssd.x -o gssd_xdr.c
   50 
   51 gssd_clnt.c:    $S/kgssapi/gssd.x
   52         RPCGEN_CPP=${CPP:Q} rpcgen -lM $S/kgssapi/gssd.x | grep -v string.h > gssd_clnt.c
   53 
   54 EXPORT_SYMS=    YES
   55 
   56 .include <bsd.kmod.mk>

Cache object: afafb1092d44bccd06e4ddfde9e9bc92


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