From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kuroishi Mitsuo Newsgroups: gmane.emacs.help Subject: Re: makeinfo: missing file argument Date: Fri, 06 Apr 2012 16:22:02 +0900 (JST) Message-ID: <20120406.162202.294943636214544274.kuroishi@iij.ad.jp> References: <1F227D90-7C7A-48CF-A303-93745460FCC2@Web.DE> <20120406.093829.2151857895394446600.kuroishi@iij.ad.jp> <4i7gxt5ofg.fsf@fencepost.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1333696951 32689 80.91.229.3 (6 Apr 2012 07:22:31 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 6 Apr 2012 07:22:31 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: rgm@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Apr 06 09:22:28 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 1SG3V5-00047V-Uo for geh-help-gnu-emacs@m.gmane.org; Fri, 06 Apr 2012 09:22:28 +0200 Original-Received: from localhost ([::1]:53866 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SG3Uz-00086t-Lf for geh-help-gnu-emacs@m.gmane.org; Fri, 06 Apr 2012 03:22:21 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:39212) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SG3Uu-00086T-06 for help-gnu-emacs@gnu.org; Fri, 06 Apr 2012 03:22:17 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SG3Up-0002cA-Nl for help-gnu-emacs@gnu.org; Fri, 06 Apr 2012 03:22:15 -0400 Original-Received: from mo30.iij.ad.jp ([202.232.30.71]:49775 helo=omgo.iij.ad.jp) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SG3Uo-0002b7-Ud; Fri, 06 Apr 2012 03:22:11 -0400 DKIM-Signature: v=1;a=rsa-sha256;c=relaxed/simple;d=iij.ad.jp;h=Date: Message-Id:To:Cc:Subject:From:In-Reply-To:References:Mime-Version: Content-Type:Content-Transfer-Encoding; i=kuroishi@iij.ad.jp; s=omgo1; t= 1333696926; x=1334906526; bh=hpx+ZL+3nLUdAtRxLLj6/K9dM5BHaCZgI9cKt07QVSo=; b=BVS TSSl9LWeboQV0BPbeKbb9oIrYm+kgMdxwthsf7q8VaQB+rHB9VxADhtH5MUhxv3H/EYhoO9D09g24 ZeSd1pNE0/mDDVgDuBjXriqZW0yM2yyu3Dxz3RP52urfeu+2Rx0COZtSO4KgddXqF+8WNaJAvhVvQ MeU22K8QSDb83g=; Original-Received: by omgo.iij.ad.jp (mo30) id q367M6PB009626; Fri, 6 Apr 2012 16:22:06 +0900 In-Reply-To: <4i7gxt5ofg.fsf@fencepost.gnu.org> X-fingerprint: BEAD 5297 0570 5BEF ED2D AD09 5992 A484 369F 67E5 X-Mailer: Mew version 6.4 on Emacs 24.0.95 / Mule 6.0 (HANACHIRUSATO) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 202.232.30.71 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:84354 Archived-At: Message-id: <4i7gxt5ofg.fsf@fencepost.gnu.org> From: Glenn Morris Subject: Re: makeinfo: missing file argument Date: Fri, 06 Apr 2012 03:06:59 -0400 > > > 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. sorry. It's like this. % LC_ALL=C gmake --version GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program built for i386-portbld-freebsd6.2 > If you have GNU Make > available, please try with that. And I tried that. Is it OK? If I do a something wrong with it, let me know about it. Thanks, -- Kuroishi Mitsuo | |~/tmp/2012-04-06% ls |Makefile |~/tmp/2012-04-06% cat Makefile |SHELL = /bin/sh | |var1= \ | file1 \ | file2 | |var2= file1 \ | file2 | |one: ${var1} | @echo $@ $< | |two: ${var2} | @echo $@ $< |~/tmp/2012-04-06% touch file1 file2 |~/tmp/2012-04-06% ls |Makefile file1 file2 |~/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 |~/tmp/2012-04-06% |