blob: 7a5c2b64cf65e208cf6c9061e75891f8e101bf33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
obj-$(CONFIG_TCM_FC) += tcm_fc.o
ifdef CONFIGFS_TCM_FC_DEBUG
EXTRA_CFLAGS += -DTCM_FC_DEBUG
endif
|