]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.bin/login/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.bin / login / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 7/19/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   login
7 SRCS=   login.c login_fbtab.c
8 CFLAGS+=-DLOGALL
9 DPADD=  ${LIBUTIL} ${LIBPAM}
10 LDADD=  -lutil ${MINUSLPAM}
11
12 WARNS?= 5
13
14 .if ${MK_AUDIT} != "no"
15 SRCS+=  login_audit.c
16 CFLAGS+= -DUSE_BSM_AUDIT
17 DPADD+=  ${LIBBSM}
18 LDADD+=  -lbsm
19 .endif
20
21 .if ${MK_SETUID_LOGIN} != "no"
22 BINOWN= root
23 BINMODE=4555
24 PRECIOUSPROG=
25 .endif
26
27 .include <bsd.prog.mk>