freebsd-dev/sbin/init/Makefile
Mark Murray 35c6fcd43b Part two of a "fix-and-move". There were some macros declared in ../sbin's
Makefile that were a) broken and b) bogusly placed. This brings the
repeared macros in.

Pointed-out-by:	BDE
1997-02-10 17:44:34 +00:00

36 lines
813 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>
.if exists(${.OBJDIR}/../../lib/libcrypt)
SCRYPTOBJDIR= ${.OBJDIR}/../../lib/libcrypt
.else
SCRYPTOBJDIR= ${.CURDIR}/../../lib/libcrypt
.endif
.if exists (${.CURDIR}/../../secure)
.if exists(${.OBJDIR}/../../secure/lib/libcrypt)
DESCRYPTOBJDIR= ${.OBJDIR}/../../secure/lib/libcrypt
.else
DESCRYPTOBJDIR= ${.CURDIR}/../../secure/lib/libcrypt
.endif
.endif