mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
This implifies pathing in make/displayed output MFC after: 3 weeks Sponsored by: Dell EMC Isilon
19 lines
260 B
Makefile
19 lines
260 B
Makefile
# PAM module for SSH
|
|
# $FreeBSD$
|
|
|
|
SSHDIR= ${SRCTOP}/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}
|