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