Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.bin / login / Makefile
1 # From: @(#)Makefile    8.1 (Berkeley) 7/19/93
2 # $FreeBSD: src/usr.bin/login/Makefile,v 1.31.2.2 2001/07/16 07:02:39 markm Exp $
3 # $DragonFly: src/usr.bin/login/Makefile,v 1.2 2003/06/17 04:29:28 dillon Exp $
4
5 PROG=   login
6 SRCS=   login.c login_access.c login_fbtab.c
7 MAN=    login.1 login.access.5
8
9 CFLAGS+=-Wall -DLOGIN_ACCESS -DLOGALL
10
11 DPADD=  ${LIBUTIL} ${LIBCRYPT}
12 LDADD=  -lutil -lcrypt
13
14 .if !defined(NOPAM)
15 CFLAGS+= -DUSE_PAM
16 DPADD+= ${LIBPAM}
17 LDADD+= ${MINUSLPAM}
18 .endif
19
20 BINMODE=4555
21 INSTALLFLAGS=-fschg
22 NEED_LIBNAMES= yes
23
24 .include <bsd.prog.mk>