diff options
Diffstat (limited to 'secure/sbin')
-rw-r--r-- | secure/sbin/Makefile | 6 | ||||
-rw-r--r-- | secure/sbin/Makefile.inc | 6 | ||||
-rw-r--r-- | secure/sbin/init/Makefile | 12 |
3 files changed, 24 insertions, 0 deletions
diff --git a/secure/sbin/Makefile b/secure/sbin/Makefile new file mode 100644 index 0000000..32ef1f1 --- /dev/null +++ b/secure/sbin/Makefile @@ -0,0 +1,6 @@ +# $Id: Makefile,v 1.1 1994/09/07 07:16:49 pst Exp $ + +SUBDIR= init + +.include <bsd.subdir.mk> + diff --git a/secure/sbin/Makefile.inc b/secure/sbin/Makefile.inc new file mode 100644 index 0000000..d8e8fa0 --- /dev/null +++ b/secure/sbin/Makefile.inc @@ -0,0 +1,6 @@ +# $Id: Makefile.inc,v 1.1 1994/09/07 07:16:50 pst Exp $ + +BINDIR= /sbin + +NOSHARED?= YES +.include "${.CURDIR}/../../Makefile.inc" diff --git a/secure/sbin/init/Makefile b/secure/sbin/init/Makefile new file mode 100644 index 0000000..48147c5 --- /dev/null +++ b/secure/sbin/init/Makefile @@ -0,0 +1,12 @@ +# @(#)Makefile 8.1 (Berkeley) 7/19/93 + +PROG= init +NOMAN= true +DPADD= ../../lib/libcrypt/libdescrypt.a ${LIBUTIL} +LDADD= -L../../lib/libcrypt -lutil -ldescrypt +.PATH: ${.CURDIR}/../../../sbin/init +BINMODE=500 +INSTALLFLAGS=-fschg +CFLAGS+=-DDEBUGSHELL -DSECURE + +.include <bsd.prog.mk> |