diff options
| author | Paul Traina <pst@FreeBSD.org> | 1994-09-07 07:16:52 +0000 |
|---|---|---|
| committer | Paul Traina <pst@FreeBSD.org> | 1994-09-07 07:16:52 +0000 |
| commit | 21b4fe120d613cfe765b78380a70d7026e30a41e (patch) | |
| tree | 3338026f496299ffb19b908a2e261fccfd04df47 /secure/usr.bin | |
| parent | 7199b0911b9c7fa9df692dd1f234259afadfb1d0 (diff) | |
Notes
Diffstat (limited to 'secure/usr.bin')
| -rw-r--r-- | secure/usr.bin/Makefile | 7 | ||||
| -rw-r--r-- | secure/usr.bin/Makefile.inc | 3 | ||||
| -rw-r--r-- | secure/usr.bin/bdes/Makefile | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile new file mode 100644 index 000000000000..a53973984a3e --- /dev/null +++ b/secure/usr.bin/Makefile @@ -0,0 +1,7 @@ +# $Id$ + +# XXX telnet still needs work +SUBDIR= bdes + +.include <bsd.subdir.mk> + diff --git a/secure/usr.bin/Makefile.inc b/secure/usr.bin/Makefile.inc new file mode 100644 index 000000000000..7883d4763d70 --- /dev/null +++ b/secure/usr.bin/Makefile.inc @@ -0,0 +1,3 @@ +# $Id$ + +BINDIR= /usr/bin diff --git a/secure/usr.bin/bdes/Makefile b/secure/usr.bin/bdes/Makefile index 9166f721c4b3..8aa71d45e815 100644 --- a/secure/usr.bin/bdes/Makefile +++ b/secure/usr.bin/bdes/Makefile @@ -1,5 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $Id$ PROG= bdes +SRCS= bdes.c + +LDADD+= -lcrypt +DPADD+= /usr/lib/libcrypt.a .include <bsd.prog.mk> |
