xref: /linux/fs/fat/Makefile (revision 7a309195d11cde854eb75559fbd6b48f9e518f25)
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