Home | History | Annotate | Line # | Download | only in pam_ssh
Makefile revision 1.10.20.1
      1  1.10.20.1       snj # $NetBSD: Makefile,v 1.10.20.1 2017/08/15 04:40:17 snj Exp $
      2        1.1  christos # PAM module for SSH
      3        1.1  christos # $FreeBSD: src/lib/libpam/modules/pam_ssh/Makefile,v 1.18 2004/08/06 07:27:04 cperciva Exp $
      4        1.1  christos 
      5        1.5     lukem NOLINT=		# don't build a lint library
      6        1.5     lukem NOPROFILE=	# don't build a profile library
      7        1.5     lukem NOPICINSTALL=	# don't install _pic.a library
      8        1.5     lukem 
      9        1.5     lukem .include <bsd.own.mk>
     10        1.2  christos 
     11       1.10  christos SSHSRC=	${NETBSDSRCDIR}/crypto/external/bsd/openssh/dist
     12        1.1  christos 
     13        1.1  christos LIB=	pam_ssh
     14        1.1  christos MAN=	pam_ssh.8
     15        1.1  christos SRCS=	pam_ssh.c
     16        1.1  christos 
     17        1.2  christos CPPFLAGS+= -I${SSHSRC}
     18  1.10.20.1       snj CPPFLAGS+= -I${SSHSRC}/../lib
     19        1.1  christos 
     20        1.9  christos LIBDPLIBS+=	ssh	${NETBSDSRCDIR}/crypto/external/bsd/openssh/lib \
     21        1.6       mrg 		crypt	${.CURDIR}/../../../libcrypt \
     22        1.9  christos 		crypto	${NETBSDSRCDIR}/crypto/external/bsd/openssl/lib/libcrypto
     23        1.1  christos 
     24        1.2  christos .include "${.CURDIR}/../mod.mk"
     25