dect
/
linux-2.6
Archived
13
0
Fork 0

tcm_fc: Makefile cleanups

This patch removes the unnecessary EXTRA_CFLAGS includes, and drops the
unused -DTCM_FC_DEBUG define.

Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
This commit is contained in:
Nicholas Bellinger 2011-05-27 13:34:20 -07:00
parent a57b5d3645
commit a1fa375958
1 changed files with 4 additions and 13 deletions

View File

@ -1,15 +1,6 @@
EXTRA_CFLAGS += -I$(srctree)/drivers/target/ \
-I$(srctree)/drivers/scsi/ \
-I$(srctree)/include/scsi/ \
-I$(srctree)/drivers/target/tcm_fc/
tcm_fc-y += tfc_cmd.o \
tfc_conf.o \
tfc_io.o \
tfc_sess.o
tcm_fc-y += tfc_cmd.o \
tfc_conf.o \
tfc_io.o \
tfc_sess.o
obj-$(CONFIG_TCM_FC) += tcm_fc.o
ifdef CONFIGFS_TCM_FC_DEBUG
EXTRA_CFLAGS += -DTCM_FC_DEBUG
endif