Makefile 681 B

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Makefile for the ntfs3 filesystem support.
  4. #
  5. # to check robot warnings
  6. ccflags-y += -Wint-to-pointer-cast \
  7. $(call cc-option,-Wunused-but-set-variable,-Wunused-const-variable) \
  8. $(call cc-option,-Wold-style-declaration,-Wout-of-line-declaration)
  9. obj-$(CONFIG_NTFS3_FS) += ntfs3.o
  10. ntfs3-y := attrib.o \
  11. attrlist.o \
  12. bitfunc.o \
  13. bitmap.o \
  14. dir.o \
  15. fsntfs.o \
  16. frecord.o \
  17. file.o \
  18. fslog.o \
  19. inode.o \
  20. index.o \
  21. lznt.o \
  22. namei.o \
  23. record.o \
  24. run.o \
  25. super.o \
  26. upcase.o \
  27. xattr.o
  28. ntfs3-$(CONFIG_NTFS3_LZX_XPRESS) += $(addprefix lib/,\
  29. decompress_common.o \
  30. lzx_decompress.o \
  31. xpress_decompress.o \
  32. )