From 090bf93cd18a4ac74b8dcd803cac464b7c26f48a Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Sun, 1 Oct 1995 15:12:47 +0000 Subject: [PATCH] Make this make work the same way as passwd and xntpd. Here it will allow secure/sbin/init to be cleaned out, and sbin/Makefile to be tidied up. --- sbin/init/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sbin/init/Makefile b/sbin/init/Makefile index 7acd065f615..c2dfb3694ca 100644 --- a/sbin/init/Makefile +++ b/sbin/init/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 7/19/93 +# $id$ PROG= init MAN8= init.8 @@ -8,4 +9,10 @@ BINMODE=500 INSTALLFLAGS=-fschg CFLAGS+=-DDEBUGSHELL -DSECURE +.if exists(../../secure) && !defined(NOCRYPT) && !defined(NOSECURE) +DPADD= ${CRYPTOBJDIR}/libdescrypt.a ${LIBUTIL} +LDADD= -L${CRYPTOBJDIR} -lutil -ldescrypt +BINMODE=500 +.endif + .include