Makefile 342 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.0.8\"
9 10 11 12 13 14 15

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

include $(TOPDIR)/Rules.make