all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.
@ 2017-03-24 17:01 Jean Louis
  2017-03-24 23:27 ` npostavs
  0 siblings, 1 reply; 6+ messages in thread
From: Jean Louis @ 2017-03-24 17:01 UTC (permalink / raw
  To: 26246


This is not a bug in Emacs. I have simply git pull-ed the latest Emacs
from development, and run the autogen, and configure, just as I do each
time.

This time I encountered
make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.  Stop.

I cannot compile the newest version.

Jean





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.
  2017-03-24 17:01 bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in' Jean Louis
@ 2017-03-24 23:27 ` npostavs
  2017-03-24 23:39   ` Jean Louis
  0 siblings, 1 reply; 6+ messages in thread
From: npostavs @ 2017-03-24 23:27 UTC (permalink / raw
  To: Jean Louis; +Cc: 26246

bugs@gnu.support (Jean Louis) writes:

> This is not a bug in Emacs. I have simply git pull-ed the latest Emacs
> from development, and run the autogen, and configure, just as I do each
> time.
>
> This time I encountered
> make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.  Stop.
>

According to [1] './autogen.sh; ./configure;make' should help, possibly
after doing 'make distclean'.

[1]: http://lists.gnu.org/archive/html/emacs-devel/2017-03/msg00643.html





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.
  2017-03-24 23:27 ` npostavs
@ 2017-03-24 23:39   ` Jean Louis
  2017-03-25  0:01     ` npostavs
  0 siblings, 1 reply; 6+ messages in thread
From: Jean Louis @ 2017-03-24 23:39 UTC (permalink / raw
  To: npostavs; +Cc: Jean Louis, 26246

On Fri, Mar 24, 2017 at 07:27:51PM -0400, npostavs@users.sourceforge.net wrote:
> bugs@gnu.support (Jean Louis) writes:
> 
> > This is not a bug in Emacs. I have simply git pull-ed the latest Emacs
> > from development, and run the autogen, and configure, just as I do each
> > time.
> >
> > This time I encountered
> > make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.  Stop.
> >
> 
> According to [1] './autogen.sh; ./configure;make' should help, possibly
> after doing 'make distclean'.
> 
> [1]: http://lists.gnu.org/archive/html/emacs-devel/2017-03/msg00643.html

make distclean
make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.  Stop.

./autogen.sh 
Checking whether you have the necessary tools...
(Read INSTALL.REPO for more details on building Emacs)
Checking for autoconf (need at least version 2.65) ... ok
Your system has the required tools.
Running 'autoreconf -fi -I m4' ...
You can now run './configure'.

and after configure I get following:

  Does Emacs use -lxft?                                   yes
  Does Emacs use -lsystemd?                               no
  Does Emacs directly use zlib?                           yes
  Does Emacs have dynamic modules support?                yes
  Does Emacs use toolkit scroll bars?                     yes
  Does Emacs support Xwidgets (requires gtk3)?            no
  Does Emacs have threading support in lisp?              yes


configure: creating ./config.status
root [ /sources/emacs ]# make
make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.  Stop.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.
  2017-03-24 23:39   ` Jean Louis
@ 2017-03-25  0:01     ` npostavs
  2017-03-25  6:38       ` Eli Zaretskii
  0 siblings, 1 reply; 6+ messages in thread
From: npostavs @ 2017-03-25  0:01 UTC (permalink / raw
  To: Jean Louis; +Cc: 26246

Jean Louis <bugs@gnu.support> writes:
>
> make distclean
> make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.  Stop.
>
> ./autogen.sh 
[...]
> configure: creating ./config.status
> root [ /sources/emacs ]# make
> make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.  Stop.

Hmm, maybe try 'rm Makefile lib/Makefile'?  Or else just start from a
fresh checkout.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.
  2017-03-25  0:01     ` npostavs
@ 2017-03-25  6:38       ` Eli Zaretskii
  2017-05-06 20:30         ` npostavs
  0 siblings, 1 reply; 6+ messages in thread
From: Eli Zaretskii @ 2017-03-25  6:38 UTC (permalink / raw
  To: npostavs; +Cc: bugs, 26246

> From: npostavs@users.sourceforge.net
> Date: Fri, 24 Mar 2017 20:01:36 -0400
> Cc: 26246@debbugs.gnu.org
> 
> Hmm, maybe try 'rm Makefile lib/Makefile'?

Definitely.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in'.
  2017-03-25  6:38       ` Eli Zaretskii
@ 2017-05-06 20:30         ` npostavs
  0 siblings, 0 replies; 6+ messages in thread
From: npostavs @ 2017-05-06 20:30 UTC (permalink / raw
  To: Eli Zaretskii; +Cc: bugs, 26246

tags 26246 notabug
close 26246
quit

Eli Zaretskii <eliz@gnu.org> writes:

>> From: npostavs@users.sourceforge.net
>> Date: Fri, 24 Mar 2017 20:01:36 -0400
>> Cc: 26246@debbugs.gnu.org
>> 
>> Hmm, maybe try 'rm Makefile lib/Makefile'?
>
> Definitely.

I added some tips about this to INSTALL.REPO [1: 5772b920f4].

[1: 5772b920f4]: 2017-05-06 16:28:54 -0400
  ; INSTALL.REPO: Mention cases that 'make bootstrap' can't handle (Bug#26246).
  http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=5772b920f40a8c9f0a5266caf8d0f4729f6d2c13





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-05-06 20:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-24 17:01 bug#26246: 26.0.50; In development: make: *** No rule to make target 'lib/Makefile.am', needed by 'lib/Makefile.in' Jean Louis
2017-03-24 23:27 ` npostavs
2017-03-24 23:39   ` Jean Louis
2017-03-25  0:01     ` npostavs
2017-03-25  6:38       ` Eli Zaretskii
2017-05-06 20:30         ` npostavs

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.