92ce8c6a3d
into modules. By and large this commit: - shuffles header files and ifdefs - splits code out where necessary to be modular - adds module glue for each of the components - adds/replaces hooks for things that can be installed at runtime
15 lines
273 B
Makefile
15 lines
273 B
Makefile
# $NetBSD: Makefile,v 1.1 2008/11/19 18:36:09 ad Exp $
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
KMOD= nfsserver
|
|
|
|
CPPFLAGS+= -DNFS -DNFSSERVER
|
|
|
|
.PATH: ${S}/nfs
|
|
|
|
SRCS+= nfs_export.c nfs_serv.c nfs_srvcache.c
|
|
SRCS+= nfs_srvsubs.c nfs_srvsocket.c nfs_syscalls.c
|
|
|
|
.include <bsd.kmodule.mk>
|