557de278bc
/etc/rc started with "daemon" settings. "window=" started with "default" settings gettys started with "default" settings. This should open the way to junk kernel options MAX_{OPEN,CHILD} and the corresponding sysctl vars.
20 lines
454 B
Makefile
20 lines
454 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
PROG= init
|
|
MAN8= init.8
|
|
BINMODE=500
|
|
INSTALLFLAGS=-fschg
|
|
CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP
|
|
|
|
.if exists(../../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
|
DISTRIBUTION=des
|
|
DPADD= ${LIBUTIL} ${DESCRYPTOBJDIR}/libdescrypt.a
|
|
LDADD= -lutil -L${DESCRYPTOBJDIR} -ldescrypt
|
|
.else
|
|
DPADD= ${LIBUTIL} ${SCRYPTOBJDIR}/libscrypt.a
|
|
LDADD= -lutil -L${SCRYPTOBJDIR} -lscrypt
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|