]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/ctladm/Makefile
Update from svn-1.8.14 to 1.9.2.
[FreeBSD/FreeBSD.git] / usr.sbin / ctladm / Makefile
1 # $FreeBSD$
2
3 PROG=           ctladm
4 SRCS=           ctladm.c util.c ctl_util.c ctl_scsi_all.c
5 .PATH:          ${.CURDIR}/../../sys/cam/ctl
6 SDIR=           ${.CURDIR}/../../sys
7 CFLAGS+=        -I${SDIR}
8 # This is necessary because of these warnings:
9 # warning: cast increases required alignment of target type
10 # The solution is to either upgrade the compiler (preferred), or do void
11 # pointer gymnastics to get around the warning.  For now, disable the
12 # warning instead of doing the void pointer workaround.
13 .if ${MACHINE_CPUARCH} == "arm"
14 WARNS?= 3
15 .endif
16
17 LIBADD=         cam sbuf bsdxml util
18 MAN=            ctladm.8
19
20 .include <bsd.prog.mk>