1# $FreeBSD: src/sys/modules/smbfs/Makefile,v 1.1.2.4 2002/03/26 10:12:29 ume Exp $ 2 3.PATH: ${.CURDIR}/../../crypto/des \ 4 ${.CURDIR}/../../crypto/des/arch/${MACHINE_ARCH} \ 5 ${.CURDIR}/../../kern \ 6 ${.CURDIR}/../../libkern \ 7 ${.CURDIR}/../../netproto/smb 8 9KMOD= smbfs 10 11SRCS= opt_inet.h opt_ipx.h \ 12 opt_netsmb.h \ 13 iconv_converter_if.h \ 14 md4c.c \ 15 smb_conn.c smb_dev.c smb_trantcp.c smb_smb.c smb_subr.c smb_rq.c \ 16 smb_usr.c smb_crypt.c smb_iod.c \ 17 smbfs_vfsops.c smbfs_node.c smbfs_io.c smbfs_vnops.c \ 18 smbfs_subr.c smbfs_smb.c 19 20.if exists(${.CURDIR}/../../crypto/des/des.h) 21NETSMBCRYPTO=yes 22.endif 23 24.if defined(NETSMBCRYPTO) 25SRCS+= des_ecb.c des_setkey.c 26.if ${MACHINE_ARCH} == "i386" 27SRCS+= des_enc.S 28.else 29SRCS+= des_enc.c 30.endif 31.endif 32 33# Build with IPX support (1|0) 34SMB_IPX?= 0 35 36# Build with INET support (1|0) 37SMB_INET?= 1 38 39CFLAGS+= ${KDEBUG} 40 41.if defined(VNPRINT) 42CFLAGS+= -DVNPRINT 43.endif 44 45opt_inet.h: 46 touch ${.TARGET} 47.if ${SMB_INET} > 0 48 echo "#define INET 1" > ${.TARGET} 49.endif 50 51opt_ipx.h: 52 touch ${.TARGET} 53.if ${SMB_IPX} > 0 54 echo "#define IPX 1" > ${.TARGET} 55.endif 56 57opt_netsmb.h: 58 echo "#define NETSMB 1" > ${.TARGET} 59.if defined(NETSMBCRYPTO) 60 echo "#define NETSMBCRYPTO 1" >> ${.TARGET} 61.endif 62 63unload: 64 @-kldunload ${KMOD} 65 66.include <bsd.kmod.mk> 67