20 lines
484 B
Makefile
20 lines
484 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
# $Id: Makefile,v 1.7 1996/05/04 08:16:20 markm Exp $
|
|
|
|
PROG= init
|
|
MAN8= init.8
|
|
BINMODE=500
|
|
INSTALLFLAGS=-fschg
|
|
CFLAGS+=-DDEBUGSHELL -DSECURE
|
|
|
|
.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>
|