110af3d672
2 Added optional excessive login logging. 3) Added login acces control on a per host/tty base. 4) See skey(1) for skey descriptions and src/usr.bin/login/README for the logging and access control features. -Guido
22 lines
260 B
Makefile
22 lines
260 B
Makefile
|
|
# @(#)Makefile 5.6 (Berkeley) 3/5/91
|
|
#
|
|
|
|
PROG= key
|
|
MAN1= key.1 skey.1
|
|
CFLAGS+=-I${.CURDIR}/../../lib
|
|
|
|
|
|
DPADD= /usr/bin/libskey.a
|
|
LDADD= -lskey
|
|
|
|
.if exists(/usr/lib/libcrypt.a)
|
|
DPADD+= ${LIBCRYPT}
|
|
LDADD+= -lcrypt
|
|
.endif
|
|
|
|
SRCS= skey.c
|
|
|
|
.include <bsd.prog.mk>
|
|
|