summaryrefslogtreecommitdiff
path: root/Makeconf
diff options
context:
space:
mode:
Diffstat (limited to 'Makeconf')
-rw-r--r--Makeconf6
1 files changed, 5 insertions, 1 deletions
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