0661be0b5d
Submitted by: Archie Cobbs (Archie@whistle.com) Changes to allow inted to control the number of servers to start on each service. This is a defence against a denial of service attack in which the system is made unusable by an external party. It also allows the behaviour of small memory systems to be more accuratly predicted, by bounding the extent to which processes can multiply.
14 lines
191 B
Makefile
14 lines
191 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= inetd
|
|
MAN8= inetd.8
|
|
MLINKS= inetd.8 inetd.conf.5
|
|
|
|
COPTS+= -Wall
|
|
#COPTS+= -DSANITY_CHECK
|
|
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
.include <bsd.prog.mk>
|