]> Git Repo - linux.git/blob - fs/netfs/Makefile
x86/config: Fix warning for 'make ARCH=x86_64 tinyconfig'
[linux.git] / fs / netfs / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2
3 netfs-y := \
4         buffered_read.o \
5         buffered_write.o \
6         direct_read.o \
7         direct_write.o \
8         io.o \
9         iterator.o \
10         locking.o \
11         main.o \
12         misc.o \
13         objects.o \
14         output.o
15
16 netfs-$(CONFIG_NETFS_STATS) += stats.o
17
18 netfs-$(CONFIG_FSCACHE) += \
19         fscache_cache.o \
20         fscache_cookie.o \
21         fscache_io.o \
22         fscache_main.o \
23         fscache_volume.o
24
25 ifeq ($(CONFIG_PROC_FS),y)
26 netfs-$(CONFIG_FSCACHE) += fscache_proc.o
27 endif
28 netfs-$(CONFIG_FSCACHE_STATS) += fscache_stats.o
29
30 obj-$(CONFIG_NETFS_SUPPORT) += netfs.o
This page took 0.035354 seconds and 4 git commands to generate.