mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004
16 lines
253 B
Makefile
16 lines
253 B
Makefile
# PAM module for SSH
|
|
# $FreeBSD$
|
|
|
|
SSHSRC= ${.CURDIR}/../../../../crypto/openssh
|
|
|
|
LIB= pam_ssh
|
|
MAN= pam_ssh.8
|
|
SRCS= pam_ssh.c
|
|
|
|
WARNS?= 0
|
|
CFLAGS+= -I${SSHSRC}
|
|
|
|
DPADD= ${LIBSSH} ${LIBCRYPTO} ${LIBCRYPT}
|
|
LDADD= -lssh -lcrypto -lcrypt
|
|
|
|
.include <bsd.lib.mk>
|