1 # SPDX-License-Identifier: GPL-2.0 << 2 # 1 # 3 # Makefile for the Linux nfs server !! 2 # Makefile for the Linux nfs filesystem routines. 4 # 3 # >> 4 # Note! Dependencies are done automagically by 'make dep', which also >> 5 # removes any old dependencies. DON'T put your own dependencies here >> 6 # unless it's something special (not a .c file). >> 7 # >> 8 # Note 2! The CFLAGS definitions are now in the main makefile. >> 9 >> 10 O_TARGET := nfsd.o 5 11 6 ccflags-y += -I$(src) # need !! 12 obj-y := nfssvc.o nfsctl.o nfsproc.o nfsfh.o vfs.o \ >> 13 export.o auth.o lockd.o nfscache.o nfsxdr.o \ >> 14 stats.o 7 15 8 obj-$(CONFIG_NFSD) += nfsd.o !! 16 obj-$(CONFIG_NFSD_V3) += nfs3proc.o nfs3xdr.o 9 17 10 # this one should be compiled first, as the tr !! 18 obj-m := $(O_TARGET) 11 nfsd-y += trace.o << 12 19 13 nfsd-y += nfssvc.o nfsctl.o n !! 20 include $(TOPDIR)/Rules.make 14 export.o auth.o loc << 15 stats.o filecache.o << 16 netlink.o << 17 nfsd-$(CONFIG_NFSD_V2) += nfsproc.o nfsxdr.o << 18 nfsd-$(CONFIG_NFSD_V2_ACL) += nfs2acl.o << 19 nfsd-$(CONFIG_NFSD_V3_ACL) += nfs3acl.o << 20 nfsd-$(CONFIG_NFSD_V4) += nfs4proc.o nfs4xdr. << 21 nfs4acl.o nfs4callb << 22 nfsd-$(CONFIG_NFSD_PNFS) += nfs4layouts.o << 23 nfsd-$(CONFIG_NFSD_BLOCKLAYOUT) += blocklayout << 24 nfsd-$(CONFIG_NFSD_SCSILAYOUT) += blocklayout. << 25 nfsd-$(CONFIG_NFSD_FLEXFILELAYOUT) += flexfile << 26 nfsd-$(CONFIG_NFS_LOCALIO) += localio.o <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.