Makefile 389 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. #
  3. # Copyright (c) 2019 Oracle.
  4. # All Rights Reserved.
  5. #
  6. ccflags-y += -I $(src) # needed for trace events
  7. obj-$(CONFIG_FS_IOMAP) += iomap.o
  8. iomap-y += trace.o \
  9. iter.o \
  10. buffered-io.o
  11. iomap-$(CONFIG_BLOCK) += direct-io.o \
  12. ioend.o \
  13. fiemap.o \
  14. seek.o \
  15. bio.o
  16. iomap-$(CONFIG_SWAP) += swapfile.o