diff options
author | jkh <jkh@FreeBSD.org> | 1996-06-24 04:26:21 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-06-24 04:26:21 +0000 |
commit | 8eb37231d4405088a481324c2ec41ac851e8d8f7 (patch) | |
tree | dc80da53186aab7c56424c2574b0cd7928930721 /secure | |
parent | 3acbd3cce674dab9a0afdee1f6e50196f4585ffa (diff) | |
download | FreeBSD-src-8eb37231d4405088a481324c2ec41ac851e8d8f7.zip FreeBSD-src-8eb37231d4405088a481324c2ec41ac851e8d8f7.tar.gz |
Bring in my changes for removing the pestilent obj links (unless you
really want them) from /usr/src. This is the final version of the
patches, incorporating the feedback I've received from -current.
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libcrypt/test/Makefile | 10 | ||||
-rw-r--r-- | secure/usr.bin/bdes/Makefile | 6 |
2 files changed, 5 insertions, 11 deletions
diff --git a/secure/lib/libcrypt/test/Makefile b/secure/lib/libcrypt/test/Makefile index b65b09f..c55a276 100644 --- a/secure/lib/libcrypt/test/Makefile +++ b/secure/lib/libcrypt/test/Makefile @@ -2,15 +2,9 @@ # Hacked Makefile to compile and run the DES-certification program, # but not install anything. # -# $Id: Makefile,v 1.3 1994/08/12 21:55:04 csgr Exp $ +# $Id: Makefile,v 1.4 1995/05/30 06:11:48 rgrimes Exp $ # -.if exists (../obj) -OBJDIR = obj -.else -OBJDIR = -.endif - -LIBCRYPT= $(.CURDIR)/../$(OBJDIR)/libdescrypt.a +LIBCRYPT= $(.OBJDIR)/libdescrypt.a #CFLAGS+= -DHAVE_CRYPT16 diff --git a/secure/usr.bin/bdes/Makefile b/secure/usr.bin/bdes/Makefile index 8f5234a..5af8438 100644 --- a/secure/usr.bin/bdes/Makefile +++ b/secure/usr.bin/bdes/Makefile @@ -1,11 +1,11 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.5 1994/11/14 20:45:35 phk Exp $ +# $Id: Makefile,v 1.6 1995/12/21 17:57:16 ache Exp $ PROG= bdes SRCS= bdes.c -.if exists(${.CURDIR}/../../lib/libcipher/obj) -LDFLAGS+= -L${.CURDIR}/../../lib/libcipher/obj +.if exists(${.OBJDIR}/../../lib/libcipher) +LDFLAGS+= -L${.OBJDIR}/../../lib/libcipher .else LDFLAGS+= -L${.CURDIR}/../../lib/libcipher .endif |