diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-11-14 20:45:35 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-11-14 20:45:35 +0000 |
commit | f079582484687f751be69b1ccbfcc93343aea3f6 (patch) | |
tree | 22d62c37f7cfda9a7791d6d7bf3a1e7e045bc0a3 /secure/usr.bin | |
parent | 3f6dabb23b9b0a793be312d74907f2690d6d4a03 (diff) | |
download | src-f079582484687f751be69b1ccbfcc93343aea3f6.tar.gz src-f079582484687f751be69b1ccbfcc93343aea3f6.zip |
Notes
Diffstat (limited to 'secure/usr.bin')
-rw-r--r-- | secure/usr.bin/Makefile.inc | 3 | ||||
-rw-r--r-- | secure/usr.bin/bdes/Makefile | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/secure/usr.bin/Makefile.inc b/secure/usr.bin/Makefile.inc index 7883d4763d70..e09ccebf3f5d 100644 --- a/secure/usr.bin/Makefile.inc +++ b/secure/usr.bin/Makefile.inc @@ -1,3 +1,4 @@ -# $Id$ +# $Id: Makefile.inc,v 1.1 1994/09/07 07:16:50 pst Exp $ BINDIR= /usr/bin +.include "${.CURDIR}/../../Makefile.inc" diff --git a/secure/usr.bin/bdes/Makefile b/secure/usr.bin/bdes/Makefile index c0e482bce2fd..1b19c58eb3ec 100644 --- a/secure/usr.bin/bdes/Makefile +++ b/secure/usr.bin/bdes/Makefile @@ -1,10 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.3 1994/09/12 17:27:55 ache Exp $ +# $Id: Makefile,v 1.4 1994/09/30 06:04:40 pst Exp $ PROG= bdes SRCS= bdes.c -LDADD+= -lcipher -DPADD+= ${LIBCIPHER} +LDADD+= -L../../lib/libcipher -lcipher +DPADD+= ../../lib/libcipher/libcipher.a .include <bsd.prog.mk> |