Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 #
0003 # Makefile for the ntfs3 filesystem support.
0004 #
0005 
0006 # to check robot warnings
0007 ccflags-y += -Wint-to-pointer-cast \
0008         $(call cc-option,-Wunused-but-set-variable,-Wunused-const-variable) \
0009         $(call cc-option,-Wold-style-declaration,-Wout-of-line-declaration)
0010 
0011 obj-$(CONFIG_NTFS3_FS) += ntfs3.o
0012 
0013 ntfs3-y :=      attrib.o \
0014                 attrlist.o \
0015                 bitfunc.o \
0016                 bitmap.o \
0017                 dir.o \
0018                 fsntfs.o \
0019                 frecord.o \
0020                 file.o \
0021                 fslog.o \
0022                 inode.o \
0023                 index.o \
0024                 lznt.o \
0025                 namei.o \
0026                 record.o \
0027                 run.o \
0028                 super.o \
0029                 upcase.o \
0030                 xattr.o
0031 
0032 ntfs3-$(CONFIG_NTFS3_LZX_XPRESS) += $(addprefix lib/,\
0033                 decompress_common.o \
0034                 lzx_decompress.o \
0035                 xpress_decompress.o \
0036                 )