octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

R: make install-lib


From: Marco Atzeri
Subject: R: make install-lib
Date: Sat, 9 May 2009 05:00:06 +0000 (GMT)

--- Ven 8/5/09, John W. Eaton <address@hidden> ha scritto:

> Da: John W. Eaton <address@hidden>
> Oggetto: make install-lib
> A: "Marco Atzeri" <address@hidden>
> Cc: "octave maintainers mailing list" <address@hidden>
> Data: Venerdì 8 maggio 2009, 20:02
> 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
> 

but STATIC_LIBS ad SHARED_LIBS are now "true" or "false"
so a 

if $(STATIC_LIBS);  

will be executed in any case.
Eventually shell command  

if  test x$(STATIC_LIBS) = xtrue ;
if  test x$(SHARED_LIBS) = xtrue ;

should be used ?

Marco






      



reply via email to

[Prev in Thread] Current Thread [Next in Thread]