It turns out that occasionally you want both shared and static versions

of INTERNALLIBs, so generate both.
This commit is contained in:
Garrett Wollman 1994-09-18 22:06:04 +00:00
parent 6052572ac4
commit 66415998d0
1 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# from: @(#)bsd.lib.mk 5.26 (Berkeley) 5/2/91
# $Id: bsd.lib.mk,v 1.6 1994/08/28 15:37:39 bde Exp $
# $Id: bsd.lib.mk,v 1.7 1994/09/16 14:30:20 jkh Exp $
#
.if exists(${.CURDIR}/../Makefile.inc)
@ -119,13 +119,11 @@ BINMODE?= 555
@${LD} -X -r ${.TARGET}
@mv a.out ${.TARGET}
.if !defined(INTERNALLIB)
.if !defined(NOPROFILE)
.if !defined(NOPROFILE) && !defined(INTERNALLIB)
_LIBS=lib${LIB}.a lib${LIB}_p.a
.else
_LIBS=lib${LIB}.a
.endif
.endif
.if !defined(NOPIC)
.if defined(SHLIB_MAJOR) && defined(SHLIB_MINOR)