mirror of
https://github.com/opnsense/src.git
synced 2026-02-17 09:39:26 -05:00
- Spam /usr/lib some more by making libssh a standard library.
- Tweak ${LIBPAM} and ${MINUSLPAM}.
- Garbage collect unused libssh_pic.a.
- Add fake -lz dependency to secure/ makefiles needed for
dynamic linkage with -lssh.
Reviewed by: des, markm
Approved by: markm
12 lines
158 B
Makefile
12 lines
158 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
PROG= ssh-agent
|
|
SRCS= ssh-agent.c
|
|
|
|
LDADD+= -lssh -lcrypto -lz
|
|
DPADD+= ${LIBSSH} ${LIBCRYPTO} ${LIBZ}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|