#
# Makefile for the UNH iSCSI initiator
#
# 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 (ie not a .c file).
#
# Note 2! The CFLAGS definitions are now in the main makefile...

O_TARGET := iscsi_initiator.o

EXTRA_CFLAGS := -I../../scsi -I/usr/include -DLINUX

obj-y	:= ../iscsi-unh-common/crc.o ../iscsi-unh-common/chap.o ../iscsi-unh-common/misc_func.o \
	    ../iscsi-unh-common/md5.o ../iscsi-unh-common/sha1.o ../iscsi-unh-common/my_memory.o \
	    ../iscsi-unh-common/iscsi_common.o 
obj-m   := $(O_TARGET)

include $(TOPDIR)/Rules.make
