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