~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to fs/ntfs/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
obj-$(CONFIG_NTFS_FS) += ntfs.o
4
4
 
5
 
ntfs-objs := aops.o attrib.o collate.o compress.o debug.o dir.o file.o \
6
 
             index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \
7
 
             unistr.o upcase.o
8
 
 
9
 
EXTRA_CFLAGS = -DNTFS_VERSION=\"2.1.30\"
10
 
 
11
 
ifeq ($(CONFIG_NTFS_DEBUG),y)
12
 
EXTRA_CFLAGS += -DDEBUG
13
 
endif
14
 
 
15
 
ifeq ($(CONFIG_NTFS_RW),y)
16
 
EXTRA_CFLAGS += -DNTFS_RW
17
 
 
18
 
ntfs-objs += bitmap.o lcnalloc.o logfile.o quota.o usnjrnl.o
19
 
endif
 
5
ntfs-y := aops.o attrib.o collate.o compress.o debug.o dir.o file.o \
 
6
          index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \
 
7
          unistr.o upcase.o
 
8
 
 
9
ntfs-$(CONFIG_NTFS_RW) += bitmap.o lcnalloc.o logfile.o quota.o usnjrnl.o
 
10
 
 
11
ccflags-y := -DNTFS_VERSION=\"2.1.30\"
 
12
ccflags-$(CONFIG_NTFS_DEBUG)    += -DDEBUG
 
13
ccflags-$(CONFIG_NTFS_RW)       += -DNTFS_RW
 
14