patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / fs / ntfs / Makefile
1 # Rules for making the NTFS driver.
2
3 obj-$(CONFIG_NTFS_FS) += ntfs.o
4
5 ntfs-objs := aops.o attrib.o compress.o debug.o dir.o file.o inode.o mft.o \
6              mst.o namei.o super.o sysctl.o unistr.o upcase.o
7
8 EXTRA_CFLAGS = -DNTFS_VERSION=\"2.1.14\"
9
10 ifeq ($(CONFIG_NTFS_DEBUG),y)
11 EXTRA_CFLAGS += -DDEBUG
12 endif
13
14 ifeq ($(CONFIG_NTFS_RW),y)
15 EXTRA_CFLAGS += -DNTFS_RW
16
17 ntfs-objs += logfile.o
18 endif