6acc486b3f
Note that LOGIN_CAP_AUTH code (login authentication) is not (yet) enabled and requires /usr/libexec/login_<style> authentication program support to be added at a later date. The Makefile contains a macro LC_AUTH to turn it on and prevent unnecessarily linking against skey/krb libs and the addition of klogin.c module. All other aspects of login_cap support are fully functional.
34 lines
780 B
Makefile
34 lines
780 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $Id: Makefile,v 1.13 1995/05/30 06:31:25 rgrimes Exp $
|
|
|
|
PROG= login
|
|
MAN1= login.1
|
|
MAN5= login.access.5
|
|
SRCS= login.c login_access.c login_fbtab.c
|
|
|
|
#Uncomment to activate login_auth
|
|
#Warning: requires src/libexec/login_* auth modules
|
|
#LC_AUTH=-DLOGIN_CAP_AUTH
|
|
CFLAGS+=-DSKEY -DLOGIN_ACCESS -DLOGALL -DLOGIN_CAP $(LC_AUTH)
|
|
|
|
.if defined(KLOGIN_PARANOID)
|
|
CFLAGS+=-DKLOGIN_PARANOID
|
|
.endif
|
|
|
|
DPADD= ${LIBUTIL} ${LIBSKEY} ${LIBMD} ${LIBCRYPT}
|
|
LDADD= -lutil -lskey -lmd -lcrypt
|
|
|
|
.if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_EBONES) && !defined(LC_AUTH)
|
|
CFLAGS+=-DKERBEROS
|
|
SRCS+= klogin.c
|
|
DPADD+= ${LIBKRB} ${LIBDES}
|
|
LDADD+= -lkrb -ldes
|
|
DISTRIBUTION= krb
|
|
.endif
|
|
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
INSTALLFLAGS=-fschg
|
|
|
|
.include <bsd.prog.mk>
|