rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # Rules for making the NTFS driver. |
| 3 | |
| 4 | obj-$(CONFIG_NTFS_FS) += ntfs.o |
| 5 | |
| 6 | ntfs-y := aops.o attrib.o collate.o compress.o debug.o dir.o file.o \ |
| 7 | index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \ |
| 8 | unistr.o upcase.o |
| 9 | |
| 10 | ntfs-$(CONFIG_NTFS_RW) += bitmap.o lcnalloc.o logfile.o quota.o usnjrnl.o |
| 11 | |
| 12 | ccflags-y := -DNTFS_VERSION=\"2.1.32\" |
| 13 | ccflags-$(CONFIG_NTFS_DEBUG) += -DDEBUG |
| 14 | ccflags-$(CONFIG_NTFS_RW) += -DNTFS_RW |
| 15 | |