Home | History | Annotate | Line # | Download | only in klist
Makefile revision 1.7
      1 # $NetBSD: Makefile,v 1.7 2000/12/30 15:25:21 sommerfeld Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 DIST=		${.CURDIR}/../../crypto/dist
      6 .PATH: ${DIST}/heimdal/kuser
      7 
      8 WARNS?=  1
      9 MKLINT= no
     10 
     11 PROG= klist
     12 
     13 SRCS= klist.c
     14 
     15 CPPFLAGS+= -I.					\
     16 	-I${DIST}/heimdal/kuser			\
     17 	-I${.CURDIR}/../../include/heimdal	\
     18 	-I${DESTDIR}/usr/include/kerberosIV	\
     19 	-I${DESTDIR}/usr/include/krb5		\
     20 	-I${DESTDIR}/usr/include		\
     21 	-I${DESTDIR}/usr/include/openssl	\
     22 	-DHAVE_CONFIG_H
     23 
     24 VERS!=	cd ${.CURDIR}/../../lib/libvers && ${PRINTOBJDIR}
     25 
     26 LDADD=						\
     27 	-lkafs					\
     28 	-lkrb5					\
     29 	-lkrb					\
     30 	-lcrypto				\
     31 	-lasn1					\
     32 	-lcom_err				\
     33 	-L${VERS} -lvers			\
     34 	-lroken					\
     35 	-lcrypt
     36 
     37 .include <bsd.prog.mk>
     38