mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 09:21:31 -05:00
19 lines
273 B
Makefile
19 lines
273 B
Makefile
# PAM module for SSH
|
|
# $FreeBSD$
|
|
|
|
SSHDIR= ${.CURDIR}/../../../../crypto/openssh
|
|
|
|
LIB= pam_ssh
|
|
MAN= pam_ssh.8
|
|
SRCS= pam_ssh.c
|
|
PACKAGE= ssh
|
|
|
|
WARNS?= 5
|
|
CFLAGS+= -I${SSHDIR} -include ssh_namespace.h
|
|
SRCS+= ssh_namespace.h
|
|
|
|
LIBADD= ssh
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.PATH: ${SSHDIR}
|