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