mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
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)
19 lines
328 B
Makefile
19 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>
|