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/smbfs/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/11.2/sys/modules/smbfs/Makefile 319182 2017-05-30 04:11:12Z ngie $
    2 
    3 .PATH:  ${SRCTOP}/sys/crypto/des \
    4         ${SRCTOP}/sys/crypto/des/arch/${MACHINE_CPUARCH} \
    5         ${SRCTOP}/sys/kern \
    6         ${SRCTOP}/sys/libkern \
    7         ${SRCTOP}/sys/netsmb \
    8         ${SRCTOP}/sys/fs/smbfs
    9 
   10 KMOD=   smbfs
   11 
   12 SRCS=   vnode_if.h \
   13         opt_inet.h opt_netsmb.h \
   14         iconv_converter_if.h \
   15         md4c.c \
   16         smb_conn.c smb_dev.c smb_trantcp.c smb_smb.c smb_subr.c smb_rq.c \
   17         smb_usr.c smb_crypt.c smb_iod.c \
   18         smbfs_vfsops.c smbfs_node.c smbfs_io.c smbfs_vnops.c \
   19         smbfs_subr.c smbfs_smb.c
   20 
   21 # NETSMBCRYPTO
   22 SRCS+=  des_ecb.c des_setkey.c
   23 .if ${MACHINE_CPUARCH} == "i386"
   24 SRCS+=  des_enc.S
   25 .else
   26 SRCS+=  des_enc.c
   27 .endif
   28 
   29 CFLAGS+= ${KDEBUG}
   30 
   31 .if defined(VNPRINT)
   32 CFLAGS+= -DVNPRINT
   33 .endif
   34 
   35 .include <bsd.kmod.mk>

Cache object: 5b563699dc0ea90589aca6d3e7d46ab5


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