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: releng/10.3/sys/modules/kgssapi/Makefile 231118 2012-02-07 09:27:07Z dim $
    2 
    3 .PATH: ${.CURDIR}/../../kgssapi ${.CURDIR}/../../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 MFILES=         kgssapi/kgss_if.m
   40 
   41 SRCS+=          gssd.h gssd_xdr.c gssd_clnt.c
   42 CLEANFILES=     gssd.h gssd_xdr.c gssd_clnt.c
   43 
   44 S=              ${.CURDIR}/../..
   45 
   46 gssd.h:         $S/kgssapi/gssd.x
   47         RPCGEN_CPP=${CPP:Q} rpcgen -hM $S/kgssapi/gssd.x | grep -v pthread.h > gssd.h
   48 
   49 gssd_xdr.c:     $S/kgssapi/gssd.x
   50         RPCGEN_CPP=${CPP:Q} rpcgen -c $S/kgssapi/gssd.x -o gssd_xdr.c
   51 
   52 gssd_clnt.c:    $S/kgssapi/gssd.x
   53         RPCGEN_CPP=${CPP:Q} rpcgen -lM $S/kgssapi/gssd.x | grep -v string.h > gssd_clnt.c
   54 
   55 .include <bsd.kmod.mk>

Cache object: 52ccd7c6c4755cddb2ec3dca6d0e1212


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