blob: 711da07808c578e3d3bcf858f79d42c0559ea2de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.6 2001/12/12 12:24:30 lukem Exp $
NOLINT= # defined
.include <bsd.own.mk>
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kdc
WARNS?= 1
PROG= hprop
SRCS= hprop.c \
mit_dump.c \
v4_dump.c
CPPFLAGS+= -I. \
-I${DIST}/heimdal/kdc \
-I${DIST}/heimdal/lib/hdb \
-I${DIST}/heimdal/lib/krb5 \
-I${.CURDIR}/../../include/heimdal \
-I${DIST}/heimdal/lib/asn1 \
-I${DESTDIR}/usr/include/kerberosIV \
-I${DESTDIR}/usr/include/krb5 \
-DHAVE_CONFIG_H
VERS!= cd ${.CURDIR}/../../lib/libvers && ${PRINTOBJDIR}
LDADD= -lhdb \
-lkrb5 \
-lkdb \
-lkrb \
-lcrypto \
-lasn1 \
-lcom_err \
-L${VERS} -lvers \
-lroken \
-lcrypt
MAN= hprop.8
.include <bsd.prog.mk>
|