automake
[Top][All Lists]
Advanced

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

_am_include and _am_quote


From: Motoyuki Kasahara
Subject: _am_include and _am_quote
Date: Thu, 05 Jul 2001 16:00:32 +0900 (JST)

I found make command on NEWS-OS 4.2R complains of Makefile.in
generated by Automake-1.4h.

Makefile.in defines the variables `_am_include' and `_am_quote',
but make on that OS cannot handle variable name beginning with
`_'.   Would you rename the variables?

    % cat Makefile
    _am_include = #
    _am_quote =
    all:; @echo this is test

    % make 
    Make: Must be a separator on rules line 2.  Stop.

    % cat Makefile2
    am_include = #
    am_quote =
    all:; @echo this is test

    % make -f Makefile2
    this is test
______________________________________________________________
                                             Motoyuki Kasahara



reply via email to

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