diff options
author | markm <markm@FreeBSD.org> | 1995-07-29 12:49:25 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1995-07-29 12:49:25 +0000 |
commit | 96fd43c32a7afa11caa70d7e7abf30678e372c9a (patch) | |
tree | 478447507d082ca4ec83e0d5d2c3bf1302c69540 /secure | |
parent | 38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc (diff) | |
download | FreeBSD-src-96fd43c32a7afa11caa70d7e7abf30678e372c9a.zip FreeBSD-src-96fd43c32a7afa11caa70d7e7abf30678e372c9a.tar.gz |
After pst and ache fixed secure telnet, it was still not in the main
makefiles. This puts it in.
PLEASE NOTE - YOU WILL NEED TO BUILD AND INSTALL THE libtelnet IN secure/
Reviewed by:
Submitted by:
Obtained from:
Diffstat (limited to 'secure')
-rw-r--r-- | secure/Makefile | 4 | ||||
-rw-r--r-- | secure/lib/Makefile | 4 | ||||
-rw-r--r-- | secure/libexec/Makefile | 6 | ||||
-rw-r--r-- | secure/libexec/Makefile.inc | 1 | ||||
-rw-r--r-- | secure/usr.bin/Makefile | 5 |
5 files changed, 13 insertions, 7 deletions
diff --git a/secure/Makefile b/secure/Makefile index 5607b54..be5f107 100644 --- a/secure/Makefile +++ b/secure/Makefile @@ -1,10 +1,10 @@ -# $Id: Makefile,v 1.5 1994/09/07 07:47:03 pst Exp $ +# $Id: Makefile,v 1.6 1994/11/14 20:45:20 phk Exp $ # lib must be first, or it will not work. This is because we reference # the lib's in the directory where they are built from the binaries we # want to build. -SUBDIR= lib usr.bin sbin bin +SUBDIR= lib libexec usr.bin sbin bin .include <bsd.subdir.mk> diff --git a/secure/lib/Makefile b/secure/lib/Makefile index d959863..82b3ed8 100644 --- a/secure/lib/Makefile +++ b/secure/lib/Makefile @@ -1,6 +1,6 @@ -# $Id: Makefile,v 1.1 1994/08/08 17:42:35 csgr Exp $ +# $Id: Makefile,v 1.2 1994/09/08 19:06:58 csgr Exp $ -SUBDIR= libcipher libcrypt +SUBDIR= libcipher libcrypt libtelnet .include <bsd.subdir.mk> diff --git a/secure/libexec/Makefile b/secure/libexec/Makefile new file mode 100644 index 0000000..9bd4d2e --- /dev/null +++ b/secure/libexec/Makefile @@ -0,0 +1,6 @@ +# From: @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $Id: Makefile,v 1.2 1995/07/25 14:03:35 mark Exp $ + +SUBDIR= telnetd + +.include <bsd.subdir.mk> diff --git a/secure/libexec/Makefile.inc b/secure/libexec/Makefile.inc index f9922b6..6657676 100644 --- a/secure/libexec/Makefile.inc +++ b/secure/libexec/Makefile.inc @@ -1,3 +1,4 @@ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 +# $Id: Makefile,v 1.2 1995/07/25 14:03:35 mark Exp $ BINDIR?= /usr/libexec diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile index a539739..9d91e42 100644 --- a/secure/usr.bin/Makefile +++ b/secure/usr.bin/Makefile @@ -1,7 +1,6 @@ -# $Id$ +# $Id: Makefile,v 1.1 1994/09/07 07:16:49 pst Exp $ -# XXX telnet still needs work -SUBDIR= bdes +SUBDIR= bdes telnet .include <bsd.subdir.mk> |