a35f04fba2
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo over ${.CURDIR}/../foo for paths in Makefiles. Differential Revision: https://reviews.freebsd.org/D9932 Sponsored by: Netflix Silence on: arch@ (twice)
20 lines
328 B
Makefile
20 lines
328 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= iscsi
|
|
PROG= iscsictl
|
|
SRCS= iscsictl.c periphs.c parse.y token.l y.tab.h
|
|
CFLAGS+= -I${.CURDIR}
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/iscsi
|
|
MAN= iscsi.conf.5 iscsictl.8
|
|
|
|
LIBADD= xo
|
|
|
|
YFLAGS+= -v
|
|
LFLAGS+= -i
|
|
CLEANFILES= y.tab.c y.tab.h y.output
|
|
|
|
WARNS= 6
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
.include <bsd.prog.mk>
|