Home | History | Annotate | Line # | Download | only in hxtool
Makefile revision 1.4
      1  1.4       mrg # $NetBSD: Makefile,v 1.4 2023/06/20 00:30:16 mrg Exp $
      2  1.1     elric 
      3  1.1     elric .include <bsd.own.mk>
      4  1.1     elric .include <${.CURDIR}/../../Makefile.inc>
      5  1.1     elric 
      6  1.1     elric USE_FORT?= yes	# cryptographic software
      7  1.1     elric 
      8  1.1     elric .PATH: ${HEIMDIST}/lib/hx509
      9  1.1     elric 
     10  1.4       mrg CPPFLAGS+=-I${HEIMDIST}/lib
     11  1.4       mrg 
     12  1.1     elric PROG= hxtool
     13  1.1     elric 
     14  1.1     elric HEIMSRCS= hxtool.c hxtool-commands.in
     15  1.1     elric 
     16  1.1     elric MAN=
     17  1.1     elric 
     18  1.2        he LDADD+= -lgssapi
     19  1.2        he LDADD+= -lsl
     20  1.2        he LDADD+= -ledit -lterminfo
     21  1.2        he DPADD+= ${LIBGSSAPI}
     22  1.2        he DPADD+= ${LIBSL}
     23  1.2        he DPADD+= ${LIBEDIT} ${LIBTERMINFO}
     24  1.1     elric 
     25  1.3  christos COPTS.hxtool.c+= -Wno-error=deprecated-declarations
     26  1.3  christos 
     27  1.1     elric .include <${HEIMBASE}/Makefile.rules.inc>
     28  1.1     elric .include <bsd.prog.mk>
     29