mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
0ccd234ca0
Replace EXTRA_CFLAGS with ccflags-y. And change ntfs-objs to ntfs-y for cleaner conditional inclusion. Signed-off-by: matt mooney <mfm@muteddisk.com> Acked-by: WANG Cong <xiyou.wangcong@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
14 lines
424 B
Makefile
14 lines
424 B
Makefile
# Rules for making the NTFS driver.
|
|
|
|
obj-$(CONFIG_NTFS_FS) += ntfs.o
|
|
|
|
ntfs-y := aops.o attrib.o collate.o compress.o debug.o dir.o file.o \
|
|
index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \
|
|
unistr.o upcase.o
|
|
|
|
ntfs-$(CONFIG_NTFS_RW) += bitmap.o lcnalloc.o logfile.o quota.o usnjrnl.o
|
|
|
|
ccflags-y := -DNTFS_VERSION=\"2.1.30\"
|
|
ccflags-$(CONFIG_NTFS_DEBUG) += -DDEBUG
|
|
ccflags-$(CONFIG_NTFS_RW) += -DNTFS_RW
|
|
|