Don't force NOPIC for building tools at all for now, so that some

(slightly stale) shared libraries get installed before non-tools
are linked.  The 2-stage build of the libraries has never really
worked, since we link to the libraries built in the first stage.
This commit is contained in:
Bruce Evans 1998-03-15 04:52:58 +00:00
parent 0fd31d39fa
commit 42fce6372e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=34592

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.163 1998/03/13 09:41:58 bde Exp $
# $Id: Makefile,v 1.164 1998/03/14 13:58:21 bde Exp $
#
# While porting to the another architecture include the bootstrap instead
# of the normal build.
@ -141,11 +141,12 @@ SUPFLAGS?= -v
# shared or profiled libraries, shared linkage, or documentation, except
# when the tools won't get cleaned we must use the defaults for shared
# libraries and shared linkage (and this doesn't waste time).
# XXX actually, we do need to waste time building shared libraries.
#
.if defined(NOCLEAN)
MK_FLAGS= -DNOINFO -DNOMAN -DNOPROFILE
MK_FLAGS= -DNOINFO -DNOMAN -DNOPROFILE
.else
MK_FLAGS= -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED
MK_FLAGS= -DNOINFO -DNOMAN -DNOPROFILE -DNOSHARED
.endif
#