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