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.0/sys/modules/smbfs/Makefile 269540 2014-08-04 22:37:02Z imp $
    2 
    3 .PATH:  ${.CURDIR}/../../crypto/des \
    4         ${.CURDIR}/../../crypto/des/arch/${MACHINE_CPUARCH} \
    5         ${.CURDIR}/../../kern \
    6         ${.CURDIR}/../../libkern \
    7         ${.CURDIR}/../../netsmb \
    8         ${.CURDIR}/../../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: 0ea37137771113bff66fd845d1d9db24


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