Commit 50662062 authored by Tracey Dent's avatar Tracey Dent Committed by Greg Kroah-Hartman

Staging: smbfs: Makefile: Makefile clean up

Changed <module>-objs to <module>-y in Makefile.
Also Replace EXTRA_CFLAGS with ccflags-y.
Signed-off-by: default avatarTracey Dent <tdent48227@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent a7b1ef25
...@@ -4,15 +4,15 @@ ...@@ -4,15 +4,15 @@
obj-$(CONFIG_SMB_FS) += smbfs.o obj-$(CONFIG_SMB_FS) += smbfs.o
smbfs-objs := proc.o dir.o cache.o sock.o inode.o file.o ioctl.o getopt.o \ smbfs-y := proc.o dir.o cache.o sock.o inode.o file.o ioctl.o getopt.o \
symlink.o smbiod.o request.o symlink.o smbiod.o request.o
# If you want debugging output, you may add these flags to the EXTRA_CFLAGS # If you want debugging output, you may add these flags to the EXTRA_CFLAGS
# SMBFS_PARANOIA should normally be enabled. # SMBFS_PARANOIA should normally be enabled.
EXTRA_CFLAGS += -DSMBFS_PARANOIA ccflags-y := -DSMBFS_PARANOIA
#EXTRA_CFLAGS += -DSMBFS_DEBUG #ccflags-y += -DSMBFS_DEBUG
#EXTRA_CFLAGS += -DSMBFS_DEBUG_VERBOSE #ccflags-y += -DSMBFS_DEBUG_VERBOSE
#EXTRA_CFLAGS += -DDEBUG_SMB_TIMESTAMP #ccflags-y += -DDEBUG_SMB_TIMESTAMP
#EXTRA_CFLAGS += -Werror #ccflags-y += -Werror
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment