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