Deleted Added
full compact
Makefile (37294) Makefile (37341)
1# $Id: Makefile,v 1.7 1998/06/30 11:19:20 jmg Exp $
1# $Id: Makefile,v 1.8 1998/06/30 11:29:01 jmg Exp $
2
3.PATH: ${.CURDIR}/../../sys/nfs
4KMOD= nfs_mod
5SRCS= nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
6 nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
2
3.PATH: ${.CURDIR}/../../sys/nfs
4KMOD= nfs_mod
5SRCS= nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
6 nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
7 nfs_vnops.c opt_inet.h
7 nfs_vnops.c opt_inet.h opt_nfs.h opt_vmpage.h
8NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
9NOMAN=
10VFS_LKM=
11
12CFLAGS+= -DNFS
13CLEANFILES+= opt_inet.h opt_nfs.h
14
15opt_inet.h:
16 touch opt_inet.h
17.if ${NFS_INET} > 0
18 echo "#define INET 1" > opt_inet.h
19.endif
20opt_nfs.h:
21 touch opt_nfs.h
22
8NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
9NOMAN=
10VFS_LKM=
11
12CFLAGS+= -DNFS
13CLEANFILES+= opt_inet.h opt_nfs.h
14
15opt_inet.h:
16 touch opt_inet.h
17.if ${NFS_INET} > 0
18 echo "#define INET 1" > opt_inet.h
19.endif
20opt_nfs.h:
21 touch opt_nfs.h
22
23opt_vmpage.h:
24 touch opt_vmpage.h
25
23.include <bsd.kmod.mk>
26.include <bsd.kmod.mk>