Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0ccd234c authored by matt mooney's avatar matt mooney Committed by Michal Marek
Browse files

fs: change to new flag variable



Replace EXTRA_CFLAGS with ccflags-y. And change ntfs-objs to ntfs-y
for cleaner conditional inclusion.

Signed-off-by: default avatarmatt mooney <mfm@muteddisk.com>
Acked-by: default avatarWANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 3996eabb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Makefile for the Linux affs filesystem routines.
#

#EXTRA_CFLAGS=-DDEBUG=1
#ccflags-y := -DDEBUG=1

obj-$(CONFIG_AFFS_FS) += affs.o

+1 −1
Original line number Diff line number Diff line
@@ -9,4 +9,4 @@ coda-objs := psdev.o cache.o cnode.o inode.o dir.o file.o upcall.o \

# If you want debugging output, please uncomment the following line.

# EXTRA_CFLAGS += -DDEBUG -DDEBUG_SMB_MALLOC=1
# ccflags-y := -DDEBUG -DDEBUG_SMB_MALLOC=1
+1 −1
Original line number Diff line number Diff line
EXTRA_CFLAGS := -I$(src)
ccflags-y := -I$(src)
obj-$(CONFIG_GFS2_FS) += gfs2.o
gfs2-y := acl.o bmap.o dir.o xattr.o glock.o \
	glops.o inode.o log.o lops.o main.o meta_io.o \
+1 −1
Original line number Diff line number Diff line
@@ -13,4 +13,4 @@ jfs-y := super.o file.o inode.o namei.o jfs_mount.o jfs_umount.o \

jfs-$(CONFIG_JFS_POSIX_ACL) += acl.o

EXTRA_CFLAGS += -D_JFS_4K
ccflags-y := -D_JFS_4K
+1 −1
Original line number Diff line number Diff line
@@ -11,6 +11,6 @@ ncpfs-$(CONFIG_NCPFS_EXTRAS) += symlink.o
ncpfs-$(CONFIG_NCPFS_NFS_NS)   += symlink.o

# If you want debugging output, please uncomment the following line
# EXTRA_CFLAGS += -DDEBUG_NCP=1
# ccflags-y := -DDEBUG_NCP=1

CFLAGS_ncplib_kernel.o := -finline-functions
Loading