c42e9af5f1
While here only compile both of them if WITH_ISCSI is set (this is the default). Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D30755 Sponsored by: Diablotin Systems
28 lines
667 B
Makefile
28 lines
667 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= iscsi
|
|
PROG= ctladm
|
|
SRCS= ctladm.c util.c ctl_util.c ctl_scsi_all.c
|
|
.PATH: ${SRCTOP}/sys/cam/ctl
|
|
SDIR= ${SRCTOP}/sys
|
|
CFLAGS+= -I${SDIR}
|
|
# This is necessary because of these warnings:
|
|
# warning: cast increases required alignment of target type
|
|
# The solution is to either upgrade the compiler (preferred), or do void
|
|
# pointer gymnastics to get around the warning. For now, disable the
|
|
# warning instead of doing the void pointer workaround.
|
|
.if ${MACHINE_CPUARCH} == "arm"
|
|
WARNS?= 3
|
|
.endif
|
|
|
|
LIBADD= cam sbuf bsdxml util nv
|
|
MAN= ctladm.8
|
|
|
|
.if ${MK_ISCSI} != "no"
|
|
CFLAGS+= -DWANT_ISCSI
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|