Home | History | Annotate | Line # | Download | only in klist
Makefile revision 1.1
      1 # $NetBSD: Makefile,v 1.1 2000/06/16 23:47:14 thorpej Exp $
      2 DIST=		${.CURDIR}/../../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/krb5		\
     16 	-I${DESTDIR}/usr/include		\
     17 	-I${DESTDIR}/usr/include/openssl	\
     18 	-DHAVE_CONFIG_H
     19 
     20 LDADD=						\
     21 	-lkafs					\
     22 	-lkrb5					\
     23 	-lkrb					\
     24 	-lcrypto				\
     25 	-lasn1					\
     26 	-lcom_err				\
     27 	-lroken					\
     28 	-lcrypt
     29 
     30 .include <bsd.prog.mk>
     31