#
# Makefile for the UNH iSCSI target
#
# 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_target.o scsi_target.o

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

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

include $(TOPDIR)/Rules.make
