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/5.4/sys/modules/smbfs/Makefile 141786 2005-02-13 07:23:46Z obrien $
    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 opt_vmpage.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 
   24 .if defined(NETSMBCRYPTO)
   25 SRCS+=  des_ecb.c des_setkey.c
   26 .if ${MACHINE_ARCH} == "i386"
   27 SRCS+=  des_enc.S
   28 .else
   29 SRCS+=  des_enc.c
   30 .endif
   31 .endif
   32 
   33 # Build with IPX support (1|0)
   34 SMB_IPX?=       0
   35 
   36 # Build with INET support (1|0)
   37 SMB_INET?=      1
   38 
   39 CFLAGS+= ${KDEBUG}
   40 
   41 .if defined(VNPRINT)
   42 CFLAGS+= -DVNPRINT
   43 .endif
   44 
   45 opt_inet.h:
   46         touch ${.TARGET}
   47 .if ${SMB_INET} > 0
   48         echo "#define INET 1" > ${.TARGET}
   49 .endif
   50 
   51 opt_ipx.h:
   52         touch ${.TARGET}
   53 .if ${SMB_IPX} > 0
   54         echo "#define IPX 1" > ${.TARGET}
   55 .endif
   56 
   57 opt_netsmb.h:
   58         echo "#define NETSMB    1"  > ${.TARGET}
   59 .if defined(NETSMBCRYPTO)
   60         echo "#define NETSMBCRYPTO 1" >> ${.TARGET}
   61 .endif
   62 
   63 .include <bsd.kmod.mk>

Cache object: 737dc3776defe1bb1f7e68343fad5efa


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