xref: /linux/fs/fat/Makefile (revision 48df7a26f4700aac8b7e5ab68796daf25c27e062)
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the Linux fat filesystem support.
4#
5
6obj-$(CONFIG_FAT_FS) += fat.o
7obj-$(CONFIG_VFAT_FS) += vfat.o
8obj-$(CONFIG_MSDOS_FS) += msdos.o
9
10fat-y := cache.o dir.o fatent.o file.o inode.o misc.o nfs.o
11vfat-y := namei_vfat.o
12msdos-y := namei_msdos.o
13