NetBSD/usr.bin/kpasswd/Makefile

31 lines
568 B
Makefile
Raw Normal View History

2000-10-28 19:33:34 +04:00
# $NetBSD: Makefile,v 1.5 2000/10/28 15:33:34 garbled Exp $
DIST= ${.CURDIR}/../../crypto/dist
2000-06-17 03:47:14 +04:00
.PATH: ${DIST}/heimdal/kpasswd
WARNS?= 1
MKLINT= no
PROG= kpasswd
SRCS= kpasswd.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kpasswd \
-I${.CURDIR}/../../include/heimdal \
-I${DESTDIR}/usr/include/krb5 \
-I${DESTDIR}/usr/include \
-I${DESTDIR}/usr/include/openssl \
-DHAVE_CONFIG_H
2000-10-28 19:33:34 +04:00
VERS!= cd ${.CURDIR}/../../lib/libvers && ${MAKE} print-objdir
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>