blob: 1dd357ad7b3268b75f50b0718eb693ad612cff53 (
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
|
# $NetBSD: Makefile,v 1.2 2011/05/25 19:21:18 he Exp $
.include <bsd.own.mk>
.include <${.CURDIR}/../../Makefile.inc>
.PATH: ${HEIMDIST}/lib/kadm5
PROG= ipropd-master
MAN= iprop.8
MLINKS= \
iprop.8 ipropd-master.8 \
iprop.8 ipropd-slave.8
SRCS+= ipropd_master.c \
ipropd_common.c
CPPFLAGS+= \
-I${HEIMDIST}/lib/krb5 \
-I${HEIMDIST}/lib/asn1 \
-I${DESTDIR}/usr/include/kadm5
LDADD+= -lkadm5srv -lhdb -lutil
DPADD+= ${LIBKADM5SRV} ${LIBHDB} ${LIBUTIL}
.include <${HEIMBASE}/Makefile.rules.inc>
.include <bsd.prog.mk>
|