mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 06:45:34 -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)
14 lines
219 B
Makefile
14 lines
219 B
Makefile
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
|
# $FreeBSD$
|
|
|
|
YPSERV=${SRCTOP}/usr.sbin/ypserv/common
|
|
.PATH: ${YPSERV}
|
|
|
|
PROG= ypwhich
|
|
SRCS= yplib_host.c ypwhich.c
|
|
|
|
CFLAGS+= -I${YPSERV} -I.
|
|
|
|
WARNS?= 2
|
|
|
|
.include <bsd.prog.mk>
|