help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: makeinfo: missing file argument


From: Glenn Morris
Subject: Re: makeinfo: missing file argument
Date: Fri, 06 Apr 2012 03:32:08 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Kuroishi Mitsuo wrote:

> sorry. It's like this.
>
>   % LC_ALL=C gmake --version
>   GNU Make 3.81

Thanks. Can you build Emacs with gmake? I think that goes something like:

export MAKE=gmake
./configure [...]
gmake

Also, what is the version of the "make" program?

>   |~/tmp/2012-04-06% make one
>   |one
>   |~/tmp/2012-04-06% gmake one
>   |one file1
>   |~/tmp/2012-04-06% make two
>   |two
>   |~/tmp/2012-04-06% gmake two
>   |two file1

It looks like whatever "make" is, it does not understand the $<
construct, and silently replaces it with nothing.

One final test, to check that the continuation lines are not the issue:

touch file1
make one

Using test Makefile as follows:
-----------------------

SHELL = /bin/sh

var1= file1

one: ${var1}
        @echo $@ $<



reply via email to

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