2c284d9395
IPX was a network transport protocol in Novell's NetWare network operating system from late 80s and then 90s. The NetWare itself switched to TCP/IP as default transport in 1998. Later, in this century the Novell Open Enterprise Server became successor of Novell NetWare. The last release that claimed to still support IPX was OES 2 in 2007. Routing equipment vendors (e.g. Cisco) discontinued support for IPX in 2011. Thus, IPX won't be supported in FreeBSD 11.0-RELEASE.
46 lines
865 B
Makefile
46 lines
865 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../crypto/des \
|
|
${.CURDIR}/../../crypto/des/arch/${MACHINE_CPUARCH} \
|
|
${.CURDIR}/../../kern \
|
|
${.CURDIR}/../../libkern \
|
|
${.CURDIR}/../../netsmb \
|
|
${.CURDIR}/../../fs/smbfs
|
|
|
|
KMOD= smbfs
|
|
|
|
SRCS= vnode_if.h \
|
|
opt_inet.h opt_netsmb.h \
|
|
iconv_converter_if.h \
|
|
md4c.c \
|
|
smb_conn.c smb_dev.c smb_trantcp.c smb_smb.c smb_subr.c smb_rq.c \
|
|
smb_usr.c smb_crypt.c smb_iod.c \
|
|
smbfs_vfsops.c smbfs_node.c smbfs_io.c smbfs_vnops.c \
|
|
smbfs_subr.c smbfs_smb.c
|
|
|
|
# NETSMBCRYPTO
|
|
SRCS+= des_ecb.c des_setkey.c
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
SRCS+= des_enc.S
|
|
.else
|
|
SRCS+= des_enc.c
|
|
.endif
|
|
|
|
# Build with INET support (1|0)
|
|
SMB_INET?= 1
|
|
|
|
CFLAGS+= ${KDEBUG}
|
|
|
|
.if defined(VNPRINT)
|
|
CFLAGS+= -DVNPRINT
|
|
.endif
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
.if ${SMB_INET} > 0
|
|
opt_inet.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|