summaryrefslogtreecommitdiff
path: root/Makeconf
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1998-09-04 18:15:17 +0000
committerRoland McGrath <roland@gnu.org>1998-09-04 18:15:17 +0000
commit17b8d370ab460bf5cc60605693add7deca2228d8 (patch)
tree04d53bb0bf5498cd55c30cf9517a1ccb1069b1f4 /Makeconf
parente91d67df56ef702e074e5c6852d1fd3e11f551d5 (diff)
1998-09-04 Roland McGrath <roland@baalperazim.frob.com>
* Makeconf (objs): Don't build PIC objects unless $(makemode) library.
Diffstat (limited to 'Makeconf')
-rw-r--r--Makeconf2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makeconf b/Makeconf
index c09a31e9..b7d4202e 100644
--- a/Makeconf
+++ b/Makeconf
@@ -155,9 +155,11 @@ objs: $(OBJS)
ifneq ($(no_prof),t)
objs: $(OBJS:%.o=%_p.o)
endif
+ifeq ($(makemode),library)
ifneq ($(no_pic),t)
objs: $(OBJS:%.o=%_pic.o)
endif
+endif
# Installation
ifeq ($(doinst),one)