mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 01:01:27 +00:00
Use the kernel userspace AL_ALG API to access additional hash functions "sha256" and "sha3-256". If configured for CHAP, on iSCSI login the client will present an ordered list of desired algorithms. During this negotiation, if the client requests SHA256 or SHA3-256 we verify that the kernel supports the algorithm before agreeing to use it.
73 lines
1.9 KiB
Makefile
73 lines
1.9 KiB
Makefile
#
|
|
# Makefile for the user space part of iSCSI-SCST.
|
|
#
|
|
# Copyright (C) 2007 - 2018 Vladislav Bolkhovitin
|
|
# Copyright (C) 2007 - 2018 Western Digital Corporation
|
|
#
|
|
# 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, version 2
|
|
# of the License.
|
|
#
|
|
# 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.
|
|
|
|
ifndef PREFIX
|
|
PREFIX=/usr/local
|
|
endif
|
|
|
|
cc-option = $(shell if $(CC) $(1) -Werror -S -o /dev/null -xc /dev/null \
|
|
> /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
|
|
|
|
SRCS_D = iscsid.c iscsi_scstd.c conn.c session.c target.c message.c ctldev.c \
|
|
log.c chap.c event.c param.c config.c isns.c md5.c sha1.c \
|
|
misc.c af_alg.c
|
|
OBJS_D = $(SRCS_D:.c=.o)
|
|
|
|
SRCS_ADM = iscsi_adm.c param.c
|
|
OBJS_ADM = $(SRCS_ADM:.c=.o)
|
|
|
|
CFLAGS += -O2 -Wall -Wextra -Wstrict-prototypes -Wno-sign-compare \
|
|
-Wimplicit-function-declaration -Wno-unused-parameter \
|
|
-Wno-missing-field-initializers \
|
|
$(call cc-option,-Wno-format-truncation) \
|
|
-g -I../include -I../../scst/include
|
|
CFLAGS += -D_GNU_SOURCE # required for glibc >= 2.8
|
|
CFLAGS += $(LOCAL_CFLAGS)
|
|
|
|
PROGRAMS = iscsi-scstd iscsi-scst-adm
|
|
LIBS =
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
iscsi-scstd: .depend_d $(OBJS_D)
|
|
$(CC) $(OBJS_D) $(LIBS) $(LOCAL_LD_FLAGS) -o $@
|
|
|
|
iscsi-scst-adm: .depend_adm $(OBJS_ADM)
|
|
$(CC) $(OBJS_ADM) $(LIBS) $(LOCAL_LD_FLAGS) -o $@
|
|
|
|
ifeq (.depend_d,$(wildcard .depend_d))
|
|
-include .depend_d
|
|
endif
|
|
|
|
ifeq (.depend_adm,$(wildcard .depend_adm))
|
|
-include .depend_adm
|
|
endif
|
|
|
|
%.o: %.c Makefile
|
|
$(CC) -c -o $(@) $(CFLAGS) $(<)
|
|
|
|
.depend_d:
|
|
$(CC) -M $(CFLAGS) $(SRCS_D) >$(@)
|
|
|
|
.depend_adm:
|
|
$(CC) -M $(CFLAGS) $(SRCS_ADM) >$(@)
|
|
|
|
clean:
|
|
rm -f *.o $(PROGRAMS) .depend*
|
|
|
|
extraclean: clean
|
|
rm -f *.orig *.rej
|