Home | History | Annotate | Line # | Download | only in pwhash
      1 #	$NetBSD: Makefile,v 1.8 2019/10/21 02:36:48 jhigh Exp $
      2 #	from: @(#)Makefile    8.3 (Berkeley) 4/2/94
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	pwhash
      7 
      8 .if ( defined(MKARGON2) && ${MKARGON2} != "no" )
      9 CPPFLAGS+=	-DHAVE_ARGON2
     10 .endif
     11 
     12 CPPFLAGS+=-I${.CURDIR} -DLOGIN_CAP
     13 
     14 DPADD+= ${LIBCRYPT} ${LIBUTIL}
     15 LDADD+= -lcrypt -lutil
     16 
     17 .include <bsd.prog.mk>
     18