From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.help Subject: Re: makeinfo: missing file argument Date: Fri, 06 Apr 2012 03:06:59 -0400 Message-ID: <4i7gxt5ofg.fsf@fencepost.gnu.org> References: <20120405.222206.806577941401312353.kuroishi@iij.ad.jp> <1F227D90-7C7A-48CF-A303-93745460FCC2@Web.DE> <20120406.093829.2151857895394446600.kuroishi@iij.ad.jp> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1333696325 28432 80.91.229.3 (6 Apr 2012 07:12:05 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 6 Apr 2012 07:12:05 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Kuroishi Mitsuo Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Apr 06 09:12:04 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SG3L2-00065a-7C for geh-help-gnu-emacs@m.gmane.org; Fri, 06 Apr 2012 09:12:04 +0200 Original-Received: from localhost ([::1]:50957 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SG3GL-0005RS-OS for geh-help-gnu-emacs@m.gmane.org; Fri, 06 Apr 2012 03:07:13 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:34048) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SG3GF-0005QV-TC for help-gnu-emacs@gnu.org; Fri, 06 Apr 2012 03:07:08 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SG3GA-0007CW-HV for help-gnu-emacs@gnu.org; Fri, 06 Apr 2012 03:07:07 -0400 Original-Received: from fencepost.gnu.org ([208.118.235.10]:39654) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SG3GA-0007CO-E5 for help-gnu-emacs@gnu.org; Fri, 06 Apr 2012 03:07:02 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1SG3G7-00037X-AR; Fri, 06 Apr 2012 03:06:59 -0400 X-Spook: Leitrim Bosnia corporate security Forte Security Council X-Ran: jbW+x4sk~Ij}4c-nj6!+n,F$%l$'//p4P|jIG?L3n?l+078\s9a;8u{4*^xq%+S&A)!-{{ X-Hue: green X-Attribution: GM In-Reply-To: <20120406.093829.2151857895394446600.kuroishi@iij.ad.jp> (Kuroishi Mitsuo's message of "Fri, 06 Apr 2012 09:38:29 +0900 (JST)") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.10 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:84353 Archived-At: 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 $@ $<