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