- Fix UNMAP tests - Build updates - Check residuals also when status != GOOD - Add WSNZ bit to the tests - Various test updates - Fix bug in scsi_create_task so it sets cdb_len correctly - Add a getter function for scsi task status and sense - Fixes and workarounds for Dell Equallogic issues - Be more flexible when allowing for unit attentions during connect time Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
28 lines
638 B
Makefile
28 lines
638 B
Makefile
lib_LTLIBRARIES = libiscsi.la
|
|
|
|
libiscsi_la_SOURCES = \
|
|
connect.c crc32c.c discovery.c init.c \
|
|
login.c nop.c pdu.c iscsi-command.c \
|
|
scsi-lowlevel.c socket.c sync.c task_mgmt.c \
|
|
logging.c
|
|
|
|
if !HAVE_LIBGCRYPT
|
|
libiscsi_la_SOURCES += md5.c
|
|
endif
|
|
|
|
SOCURRENT=5
|
|
SOREVISON=0
|
|
SOAGE=1
|
|
libiscsi_la_LDFLAGS = \
|
|
-version-info $(SOCURRENT):$(SOREVISON):$(SOAGE) -bindir $(bindir) \
|
|
-no-undefined -export-symbols libiscsi.syms
|
|
|
|
libiscsi_la_CPPFLAGS = -I../include -I$(srcdir)/include \
|
|
"-D_U_=__attribute__((unused))" \
|
|
"-D_R_(A,B)=__attribute__((format(printf,A,B)))"
|
|
|
|
AM_CFLAGS=$(WARN_CFLAGS)
|
|
|
|
dist_noinst_DATA = libiscsi.syms libiscsi.def
|
|
|