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)
12 lines
165 B
Makefile
12 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>
|