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/8.4/sys/modules/smbfs/Makefile 156326 2006-03-05 22:52:17Z yar $
    2 
    3 .PATH:  ${.CURDIR}/../../crypto/des \
    4         ${.CURDIR}/../../crypto/des/arch/${MACHINE_ARCH} \
    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_ipx.h \
   14         opt_netsmb.h \
   15         iconv_converter_if.h \
   16         md4c.c \
   17         smb_conn.c smb_dev.c smb_trantcp.c smb_smb.c smb_subr.c smb_rq.c \
   18         smb_usr.c smb_crypt.c smb_iod.c \
   19         smbfs_vfsops.c smbfs_node.c smbfs_io.c smbfs_vnops.c \
   20         smbfs_subr.c smbfs_smb.c
   21 
   22 # NETSMBCRYPTO
   23 SRCS+=  des_ecb.c des_setkey.c
   24 .if ${MACHINE_ARCH} == "i386"
   25 SRCS+=  des_enc.S
   26 .else
   27 SRCS+=  des_enc.c
   28 .endif
   29 
   30 # Build with IPX support (1|0)
   31 SMB_IPX?=       0
   32 
   33 # Build with INET support (1|0)
   34 SMB_INET?=      1
   35 
   36 CFLAGS+= ${KDEBUG}
   37 
   38 .if defined(VNPRINT)
   39 CFLAGS+= -DVNPRINT
   40 .endif
   41 
   42 .if !defined(KERNBUILDDIR)
   43 .if ${SMB_INET} > 0
   44 opt_inet.h:
   45         echo "#define INET 1" > ${.TARGET}
   46 .endif
   47 
   48 .if ${SMB_IPX} > 0
   49 opt_ipx.h:
   50         echo "#define IPX 1" > ${.TARGET}
   51 .endif
   52 .endif
   53 
   54 .include <bsd.kmod.mk>

Cache object: 5633d1257d06185d9e0f417d0080719d


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