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:06:59 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Kuroishi Mitsuo wrote:

>   > After you configure, what does doc/emacs/Makefile look like?
>   >   (best to send the whole thing as an attachment)
>
> copying below.

I don't see anything wrong with that.
You did not say what version of Make you are using. If you have GNU Make
available, please try with that.

Also, please try the following test:
Save the end of this mail to a file called `Makefile'.
Then run:

touch file1 file2

Then what is printed if you run the commands:

make one

and

make two

?


Test Makefile follows:
-----------------

SHELL = /bin/sh

var1= \
        file1 \
        file2

var2= file1 \
        file2

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

two: ${var2}
        @echo $@ $<



reply via email to

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