Home | History | Annotate | Line # | Download | only in pam_ssh
Makefile revision 1.10
      1  1.10  christos # $NetBSD: Makefile,v 1.10 2009/07/20 18:01:41 christos 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.1  christos 
     19   1.9  christos LIBDPLIBS+=	ssh	${NETBSDSRCDIR}/crypto/external/bsd/openssh/lib \
     20   1.6       mrg 		crypt	${.CURDIR}/../../../libcrypt \
     21   1.9  christos 		crypto	${NETBSDSRCDIR}/crypto/external/bsd/openssl/lib/libcrypto
     22   1.1  christos 
     23   1.2  christos .include "${.CURDIR}/../mod.mk"
     24