# Makefile for the Linux iSCSI driver
# Copyright (C) 2001 Cisco Systems, Inc.
# maintained by linux-iscsi@cisco.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# See the file COPYING included with this distribution for more details.

EXTRA_CFLAGS    := -DLINUX=1 -I$(srctree)/drivers/scsi

obj-$(CONFIG_ISCSI_MOD) += iscsi_mod.o

iscsi_mod-objs                      :=	iscsi-initiator.o \
					iscsi-attr.o \
                                        iscsi-debug-attr.o \
                                        iscsi-probe.o \
                                        iscsi-login.o \
                                        iscsiAuthClient.o \
                                        iscsiAuthClientGlue.o \
                                        iscsi-crc.o \
                                        iscsi-session.o \
                                        iscsi-timer.o \
                                        iscsi-task.o \
                                        iscsi-portal.o \
                                        iscsi-ioctl.o \
                                        iscsi-network.o \
                                        iscsi-recv-pdu.o \
                                        iscsi-xmit-pdu.o
