blob: ec26f9e979a7ac975f16a81d2ffe7ff925ec16f4 (
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
|
# $OpenBSD: Makefile,v 1.14 2010/10/13 08:14:22 jsg Exp $
.include <bsd.own.mk>
PROG= login_krb5-or-pwd
SRCS= login.c login_passwd.c pwd_gensalt.c
MAN= ${PROG}.8
CFLAGS+=-DPASSWD -Wall -I${.CURDIR}/../login_passwd
.if (${KERBEROS5:L} == "yes")
SRCS+= login_krb5.c
DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBUTIL}
LDADD+= -lkrb5 -lasn1 -lcrypto -lutil
CFLAGS+=-DKRB5
.PATH: ${.CURDIR}/../login_passwd ${.CURDIR}/../login_krb5 ${.CURDIR}/../../usr.bin/passwd
.else
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.PATH: ${.CURDIR}/../login_passwd ${.CURDIR}/../../usr.bin/passwd
.endif
BINOWN= root
BINGRP= auth
BINMODE=4555
BINDIR= /usr/libexec/auth
.include <bsd.prog.mk>
|