summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Makeconf6
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b3745622..67a7f8b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jul 10 14:10:32 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * Makeconf ($(makemode) == library): If $(no_prof) is `t', then
+ don't build _p.a versions of libraries.
+
1997-06-19 Miles Bader <miles@gnu.ai.mit.edu>
* Makefile (prog-subdirs): Add hostmux.
diff --git a/Makeconf b/Makeconf
index 98ae8ce5..bc8dfa53 100644
--- a/Makeconf
+++ b/Makeconf
@@ -123,7 +123,11 @@ ifeq ($(makemode),library)
installhdrsubdir = hurd
endif
ifndef targets
- targets = $(libname).a $(libname).so $(libname)_p.a
+ ifeq ($(no_prof),t)
+ targets = $(libname).a $(libname).so
+ else
+ targets = $(libname).a $(libname).so $(libname)_p.a
+ endif
endif
endif