mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
it. While not strictly required, it unbreaks the cross-build world that is resulting from moving the libraries around. I have a more permanent solution to this problem in the works, but I asked des for permission to commit this to get the ball rolling. This also makes the ssh build more along the lines of what the openssh-portable and OpenBSD openssh Makefile glue does. Reviewed by: des
11 lines
156 B
Makefile
11 lines
156 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ssh-agent
|
|
CFLAGS+=-I${SSHDIR}
|
|
|
|
DPADD= ${LIBSSH} ${LIBCRYPTO} ${LIBZ}
|
|
LDADD= -lssh -lcrypto -lz
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|