Home | History | Annotate | Line # | Download | only in hpropd
Makefile revision 1.3
      1 # $NetBSD: Makefile,v 1.3 2023/06/19 23:11:44 christos Exp $
      2 
      3 .include <bsd.own.mk>
      4 .include <${.CURDIR}/../../Makefile.inc>
      5 
      6 .PATH:		${HEIMDIST}/kdc ${HEIMDIST}/lib/hcrypto
      7 
      8 PROG=	hpropd
      9 SRCS=	hpropd.c ui.c
     10 MAN=	hpropd.8
     11 
     12 CPPFLAGS+= 				\
     13 	-I${HEIMBASE}/include/krb5	\
     14 	-I${HEIMDIST}/lib/asn1		\
     15 	-I${HEIMDIST}/lib/krb5		\
     16 	-I${HEIMDIST}/lib
     17 
     18 LDADD+= -lhdb
     19 DPADD+= ${LIBHDB}
     20 
     21 .include <${HEIMBASE}/Makefile.rules.inc>
     22 .include <bsd.prog.mk>
     23