[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
make install-lib
From: |
John W. Eaton |
Subject: |
make install-lib |
Date: |
Fri, 8 May 2009 14:02:13 -0400 |
On 8-May-2009, Marco Atzeri wrote:
| Am I wrong or in
|
| src/Makefile.in
| liboctave/Makefile.in
| libcruft/Makefile.in
|
| at "install-lib:"
|
| if $(STATIC_LIBS); then \
| and
| if $(SHARED_LIBS); then \
|
| should be changed in
|
| ifeq ($(STATIC_LIBS), true)
| ifeq ($(SHARED_LIBS), true)
|
| forms ?
I don't think so, because the "if $(STATIC_LIBS) ..." thing is part of
a shell command, so it is executed by the shell, not Make.
jwe