1) don't make bdes yet

2) fix .include in secure/lib/Makefile.inc
3) fix afterinstall rule in libcrypt/Makefile
Submitted by:	Geoff Rehmet
This commit is contained in:
Geoff Rehmet 1994-08-12 21:02:31 +00:00
parent 58eaed35cf
commit b1c75fb65d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2044
3 changed files with 12 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# $Id: Makefile,v 1.1 1994/08/07 19:04:08 wollman Exp $
# $Id: Makefile,v 1.2 1994/08/08 17:49:22 csgr Exp $
SUBDIR= bdes lib
SUBDIR= lib
.include <bsd.subdir.mk>

View File

@ -1,3 +1,5 @@
# $Id: Makefile.inc,v 1.1 1994/08/07 19:04:10 wollman Exp $
# $Id: Makefile.inc,v 1.1 1994/08/08 17:42:36 csgr Exp $
.include ${.CURDIR}/../../lib/Makefile.inc
.if exists(${.CURDIR}/../../../lib/Makefile.inc)
.include "${.CURDIR}/../../../lib/Makefile.inc"
.endif

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.3 1994/08/09 18:37:33 g89r4222 Exp $
# $Id: Makefile,v 1.3 1994/08/09 18:52:52 csgr Exp $
#
LCRYPTBASE= libcrypt
@ -27,10 +27,15 @@ test:
# We only install the links if they do not already exist.
# This may have to be revised
afterinstall:
.if defined(SHLIB_MAJOR) && ! defined(NOSHARED)
@if [ ! -e $(LCRYPTSO) ]; then \
cd $(DESTDIR)/$(LIBDIR); \
rm -f $(LCRYPTSO); \
ln -s $(LDCRYPTSO) $(LCRYPTSO); \
fi
.endif
@if [ ! -e $(LCRYPTBASE).a ]; then \
cd $(DESTDIR)/$(LIBDIR); \
rm -f $(LCRYPTBASE).a $(LCRYPTBASE)_p.a; \
ln -s $(LDCRYPTBASE).a libcrypt.a; \
ln -s $(LDCRYPTBASE)_p.a libcrypt_p.a; \