NetBSD/usr.bin/string2key/Makefile

37 lines
678 B
Makefile
Raw Normal View History

2001-12-12 04:48:43 +03:00
# $NetBSD: Makefile,v 1.9 2001/12/12 01:48:47 tv Exp $
2000-12-30 18:25:19 +03:00
.include <bsd.own.mk>
DIST= ${.CURDIR}/../../crypto/dist
2000-06-17 03:47:14 +04:00
.PATH: ${DIST}/heimdal/kdc
WARNS?= 1
2001-12-12 04:48:43 +03:00
NOLINT= # defined
2000-06-17 03:47:14 +04:00
PROG= string2key
MAN= string2key.8
2000-06-17 03:47:14 +04:00
SRCS= string2key.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kdc \
-I${.CURDIR}/../../include/heimdal \
-I${DIST}/heimdal/lib/asn1 \
-I${DIST}/heimdal/lib/krb5 \
-I${DESTDIR}/usr/include/kerberosIV \
2000-06-17 03:47:14 +04:00
-I${DESTDIR}/usr/include/krb5 \
-I${DESTDIR}/usr/include/openssl \
-DHAVE_CONFIG_H
VERS!= cd ${.CURDIR}/../../lib/libvers && ${PRINTOBJDIR}
2000-08-04 02:47:37 +04:00
2000-06-17 03:47:14 +04:00
LDADD= -lkrb5 \
-lcrypto \
-lasn1 \
-lcom_err \
2000-08-04 02:47:37 +04:00
-L${VERS} -lvers \
2000-06-17 03:47:14 +04:00
-lroken \
-lcrypt
.include <bsd.prog.mk>