ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[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 logfile.o \
6              mft.o mst.o namei.o super.o sysctl.o unistr.o upcase.o
7
8 EXTRA_CFLAGS = -DNTFS_VERSION=\"2.1.8\"
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 endif