ab03e6d597
- Use more ``const''s where suitable. - Define strk() as a static function in global scope. This avoids the "nested extern declaration" warnings. - Use static initialization of strings, rather than referring string constants through char *. - Bump WARNS from 0 to 6.
18 lines
316 B
Makefile
18 lines
316 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $FreeBSD$
|
|
|
|
PROG= init
|
|
MAN= init.8
|
|
MLINKS= init.8 securelevel.8
|
|
BINMODE=500
|
|
PRECIOUSPROG=
|
|
INSTALLFLAGS=-b -B.bak
|
|
WARNS?= 6
|
|
CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
|
|
DPADD= ${LIBUTIL} ${LIBCRYPT}
|
|
LDADD= -lutil -lcrypt
|
|
|
|
NO_SHARED?= YES
|
|
|
|
.include <bsd.prog.mk>
|