From 149e8ef7f8e90dce8dad9f90be2fd7f4d4a90656 Mon Sep 17 00:00:00 2001 From: Thomas Bushnell Date: Thu, 10 Jul 1997 18:12:02 +0000 Subject: Thu Jul 10 14:10:32 1997 Thomas Bushnell, n/BSG * Makeconf ($(makemode) == library): If $(no_prof) is `t', then don't build _p.a versions of libraries. --- Makeconf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makeconf') 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 -- cgit v1.2.3