cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (338B)


      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
     14obj-$(CONFIG_FAT_KUNIT_TEST) += fat_test.o