blob: 16b4a985e95254188bb85e3e18752bef805e13bd (
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
|
# $OpenBSD: Makefile,v 1.20 2000/09/03 18:41:18 espie Exp $
.include <bsd.own.mk>
PROG= passwd
SRCS= local_passwd.c yp_passwd.c passwd.c pwd_gensalt.c getpwent.c \
pwd_check.c
.PATH: ${.CURDIR}/../../lib/libc/gen
DPADD+= ${LIBRPCSVC} ${LIBUTIL}
LDADD+= -lrpcsvc -lutil
CFLAGS+= -I${.CURDIR}
.if (${YP:L} == "yes")
CFLAGS+=-DYP -I${.CURDIR}/../../lib/libc/yp
.endif
.include <bsd.own.mk> # For Kerberos
.if (${KERBEROS5:L} == "yes")
#SRCS+= krb5_passwd.c XXX fix the /tmp/tkt_cpw_%d race first + others
CFLAGS+= -DKERBEROS5
DPADD+= ${LIBKRB5} ${LIBCRYPTO}
LDADD+= -lkrb5 -lcrypto
.elif (${KERBEROS:L} == "yes")
.PATH: ${.CURDIR}/../rlogin
SRCS+= new_pwd.c krb_passwd.c des_rw.c
CFLAGS+= -DKERBEROS
DPADD+= ${LIBKRB} ${LIBDES}
LDADD+= -lkadm -lkrb -ldes -lcom_err
.endif
BINMODE=4555
BINOWN=root
getpwent.o: getpwent.c
${COMPILE.c} -UYP ${.IMPSRC}
.include <bsd.prog.mk>
|