Makefile 269 B

12345678910111213141516
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Makefile for general filesystem caching code
  4. #
  5. fscache-y := \
  6. cache.o \
  7. cookie.o \
  8. io.o \
  9. main.o \
  10. volume.o
  11. fscache-$(CONFIG_PROC_FS) += proc.o
  12. fscache-$(CONFIG_FSCACHE_STATS) += stats.o
  13. obj-$(CONFIG_FSCACHE) := fscache.o