mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 01:59:01 -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
13 lines
199 B
Makefile
13 lines
199 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
PROG= sftp-server
|
|
SRCS= sftp-server.c sftp-common.c
|
|
MAN= sftp-server.8
|
|
|
|
LDADD+= -lssh -lcrypto -lz
|
|
DPADD+= ${LIBSSH} ${LIBCRYPTO} ${LIBZ}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|