Deleted Added
full compact
Makefile (131840) Makefile (134748)
1# $FreeBSD: head/sys/modules/nfsclient/Makefile 131840 2004-07-08 22:35:36Z brian $
1# $FreeBSD: head/sys/modules/nfsclient/Makefile 134748 2004-09-04 06:37:58Z ru $
2
3.PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs4client \
4 ${.CURDIR}/../../nfs ${.CURDIR}/../../rpc
5
6KMOD= nfsclient
7SRCS= vnode_if.h \
8 nfs_bio.c nfs_lock.c nfs_node.c nfs_socket.c nfs_subs.c nfs_nfsiod.c \
9 nfs_vfsops.c nfs_vnops.c nfs_common.c \

--- 7 unchanged lines hidden (view full) ---

17
18# USE THE RPCCLNT:
19CFLAGS+= -DRPCCLNT_DEBUG
20SRCS+= rpcclnt.c
21
22# USE THE NEW IDMAPPER
23CFLAGS+= -DUSE_NEW_IDMAPPER
24
2
3.PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs4client \
4 ${.CURDIR}/../../nfs ${.CURDIR}/../../rpc
5
6KMOD= nfsclient
7SRCS= vnode_if.h \
8 nfs_bio.c nfs_lock.c nfs_node.c nfs_socket.c nfs_subs.c nfs_nfsiod.c \
9 nfs_vfsops.c nfs_vnops.c nfs_common.c \

--- 7 unchanged lines hidden (view full) ---

17
18# USE THE RPCCLNT:
19CFLAGS+= -DRPCCLNT_DEBUG
20SRCS+= rpcclnt.c
21
22# USE THE NEW IDMAPPER
23CFLAGS+= -DUSE_NEW_IDMAPPER
24
25opt_inet.h:
26 touch ${.TARGET}
27.if ${NFS_INET} > 0
25.if ${NFS_INET} > 0
26opt_inet.h:
28 echo "#define INET 1" > ${.TARGET}
29.endif
30
31.if ${NFS_INET6} > 0
32opt_inet6.h:
33 echo "#define INET6 1" > ${.TARGET}
34.endif
35
36.include <bsd.kmod.mk>
37
27 echo "#define INET 1" > ${.TARGET}
28.endif
29
30.if ${NFS_INET6} > 0
31opt_inet6.h:
32 echo "#define INET6 1" > ${.TARGET}
33.endif
34
35.include <bsd.kmod.mk>
36