Makefile 338 B

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