freebsd-dev/usr.bin/login/Makefile
John Polstra e83348169b ATTENTION: INSTALL "/etc/pam.conf" FROM "src/etc"!!!
Change login to use PAM for authentication.  I kept the built-in
passwd/NIS authentication support, to handle cases where the system
is missing its "/etc/pam.conf" file.  S/Key and KerberosIV
authentication methods are removed from the login program, but
still available in PAM modules.
1998-11-21 02:22:14 +00:00

18 lines
354 B
Makefile

# From: @(#)Makefile 8.1 (Berkeley) 7/19/93
# $Id: Makefile,v 1.23 1998/11/11 05:47:45 jdp Exp $
PROG= login
MAN1= login.1
MAN5= login.access.5
SRCS= login.c login_access.c login_fbtab.c
CFLAGS+=-Wall -DLOGIN_ACCESS -DLOGALL
DPADD= ${LIBUTIL} ${LIBCRYPT} ${LIBPAM}
LDADD= -lutil -lcrypt -lpam
BINMODE=4555
INSTALLFLAGS=-fschg
.include <bsd.prog.mk>