Deleted Added
full compact
Makefile (33105) Makefile (33143)
1# $Id: Makefile,v 1.4 1998/01/09 01:01:21 eivind Exp $
1# $Id: Makefile,v 1.5 1998/02/04 21:56:37 eivind 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_diagnostic.h opt_inet.h
7 nfs_vnops.c opt_inet.h
8NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
9NOMAN=
10VFS_LKM=
11
12CFLAGS+= -DNFS
8NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
9NOMAN=
10VFS_LKM=
11
12CFLAGS+= -DNFS
13CLEANFILES+=opt_diagnostic.h opt_inet.h
13CLEANFILES+= opt_inet.h
14
14
15opt_diagnostic.h:
16 touch opt_diagnostic.h
17
18opt_inet.h:
19 touch opt_inet.h
20.if ${NFS_INET} > 0
21 echo "#define INET 1" > opt_inet.h
22.endif
23
24.include <bsd.kmod.mk>
15opt_inet.h:
16 touch opt_inet.h
17.if ${NFS_INET} > 0
18 echo "#define INET 1" > opt_inet.h
19.endif
20
21.include <bsd.kmod.mk>