#
# Makefile for the Linux kernel device drivers.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile.

EXTRA_CFLAGS += -I$(src) 

obj-$(CONFIG_ISCSI_ET)	+= iscsi_trgt.o
iscsi_trgt-objs		:= target_cmnd.o iscsi.o workerthread.o config.o digest.o \
			conn.o session.o target.o volume.o iotype.o daemon.o \
			file-io.o target_disk.o
# raw-io.o target_raw.o

