Makefile 380 B

123456789101112131415161718192021
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Makefile for caching in a mounted filesystem
  4. #
  5. cachefiles-y := \
  6. cache.o \
  7. daemon.o \
  8. interface.o \
  9. io.o \
  10. key.o \
  11. main.o \
  12. namei.o \
  13. security.o \
  14. volume.o \
  15. xattr.o
  16. cachefiles-$(CONFIG_CACHEFILES_ERROR_INJECTION) += error_inject.o
  17. cachefiles-$(CONFIG_CACHEFILES_ONDEMAND) += ondemand.o
  18. obj-$(CONFIG_CACHEFILES) := cachefiles.o