Makefile 371 Bytes
Newer Older
1 2
# Rules for making the NTFS driver.

3
obj-$(CONFIG_NTFS_FS) += ntfs.o
4

5 6
ntfs-objs := aops.o attrib.o compress.o debug.o dir.o file.o inode.o mft.o \
	     mst.o namei.o super.o sysctl.o time.o unistr.o upcase.o
7

8
EXTRA_CFLAGS = -DNTFS_VERSION=\"2.1.5\"
9 10 11 12 13

ifeq ($(CONFIG_NTFS_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
endif

14 15 16
ifeq ($(CONFIG_NTFS_RW),y)
EXTRA_CFLAGS += -DNTFS_RW
endif