mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -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)
11 lines
165 B
Makefile
11 lines
165 B
Makefile
# $FreeBSD$
|
|
|
|
OPENPAM= ${SRCTOP}/contrib/openpam
|
|
.PATH: ${OPENPAM}/include ${OPENPAM}/bin/pamtest
|
|
|
|
PROG= pamtest
|
|
SRCS= pamtest.c
|
|
|
|
LIBADD= pam
|
|
|
|
.include <bsd.prog.mk>
|