diff options
author | Thomas Bushnell <thomas@gnu.org> | 1997-07-10 18:12:02 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1997-07-10 18:12:02 +0000 |
commit | 149e8ef7f8e90dce8dad9f90be2fd7f4d4a90656 (patch) | |
tree | 0afb5d9e1d841dcc81f1bcddc70bad713ef5d986 /Makeconf | |
parent | a2a295b71bed3585c4e24a6eba8346ced72b46e7 (diff) |
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.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |