559371c2c8
# This enables the old, fake ident service. auth stream tcp nowait root internal # This enables the new, real ident service. auth stream tcp nowait root internal auth -r # This enables ~/.fakeid support, too. auth stream tcp nowait root internal auth -r -f
15 lines
279 B
Makefile
15 lines
279 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $Id: Makefile,v 1.10 1999/06/27 18:05:33 sheldonh Exp $
|
|
|
|
PROG= inetd
|
|
MAN8= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
|
|
COPTS+= -Wall -DLOGIN_CAP
|
|
#COPTS+= -DSANITY_CHECK
|
|
|
|
DPADD+= ${LIBUTIL} ${LIBWRAP}
|
|
LDADD+= -lutil -lwrap
|
|
|
|
.include <bsd.prog.mk>
|