emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r105327: * GNUmakefile: New file.


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105327: * GNUmakefile: New file.
Date: Wed, 27 Jul 2011 13:25:22 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105327
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Wed 2011-07-27 13:25:22 -0700
message:
  * GNUmakefile: New file.
  
  This is for convenience, so that one can run GNU make in an
  unconfigured source tree, and get a default build.
added:
  GNUmakefile
modified:
  ChangeLog
=== modified file 'ChangeLog'
--- a/ChangeLog 2011-07-13 10:36:12 +0000
+++ b/ChangeLog 2011-07-27 20:25:22 +0000
@@ -1,3 +1,9 @@
+2011-07-27  Paul Eggert  <address@hidden>
+
+       * GNUmakefile: New file.
+       This is for convenience, so that one can run GNU make in an
+       unconfigured source tree, and get a default build.
+
 2011-07-13  Jan Djärv  <address@hidden>
 
        * configure.in (GSETTINGS): Check for gio-2.0 >= 2.26.

=== added file 'GNUmakefile'
--- a/GNUmakefile       1970-01-01 00:00:00 +0000
+++ b/GNUmakefile       2011-07-27 20:25:22 +0000
@@ -0,0 +1,77 @@
+# Build Emacs from a fresh tarball or version-control checkout.
+
+# Copyright 2011 Free Software Foundation, Inc.
+#
+# This file is part of GNU Emacs.
+#
+# GNU Emacs is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# GNU Emacs is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
+#
+# written by Paul Eggert
+
+
+# This GNUmakefile is for GNU Make.  It is for convenience, so that
+# one can run 'make' in an unconfigured source tree.  In such a tree,
+# this file causes GNU Make to first create a standard configuration
+# with the default options, and then reinvokes itself on the
+# newly-built Makefile.  If the source tree is already configured,
+# this file defers to the existing Makefile.
+
+# If you are using a non-GNU 'make', or if you want non-default build
+# options, or if you want to build in an out-of-source tree, please
+# run "configure" by hand.  But run autogen.sh first, if the source
+# was checked out directly from the repository.
+
+
+# If a Makefile already exists, just use it.
+
+ifeq ($(wildcard Makefile),Makefile)
+include Makefile
+else
+
+# If cleaning and Makefile does not exist, don't bother creating it.
+# The source tree is already clean, or is in a weird state that
+# requires expert attention.
+
+ifeq ($(filter-out %clean,$(or $(MAKECMDGOALS),default)),)
+
+$(MAKECMDGOALS):
+       @echo >&2 'No Makefile; skipping address@hidden'
+
+else
+
+# No Makefile, and not cleaning.
+# If 'configure' does not exist, Emacs must have been checked
+# out directly from the repository; run ./autogen.sh.
+# Once 'configure' exists, run it.
+# Finally, run the actual 'make'.
+
+default $(filter-out configure Makefile,$(MAKECMDGOALS)): Makefile
+       $(MAKE) -f Makefile $(MAKECMDGOALS)
+# Execute in sequence, so that multiple user goals don't conflict.
+.NOTPARALLEL:
+
+configure:
+       @echo >&2 'There seems to be no "configure" file in this directory.'
+       @echo >&2 'Running ./autogen.sh || autogen/copy_autogen ...'
+       ./autogen.sh || autogen/copy_autogen
+       @echo >&2 '"configure" file built.'
+
+Makefile: configure
+       @echo >&2 'There seems to be no Makefile in this directory.'
+       @echo >&2 'Running ./configure ...'
+       ./configure
+       @echo >&2 'Makefile built.'
+
+endif
+endif


reply via email to

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