[PATCH] Include Makefile.localdef in Makefile, if it exists.

Subsystems: kernel build + files below scripts/ (unless maintained elsewhere), the rest

DORMANTno replies

5 messages, 3 authors, 2016-06-15 · open the first message on its own page

[PATCH] Include Makefile.localdef in Makefile, if it exists.

From: Jason Riedy <hidden>
Date: 2016-06-15 22:42:14

Makefile.localdef is just a hook for local definitions.  Users
can track their definitions in a branch and not worry about
merge conflicts.

Signed-off-by: E. Jason Riedy <redacted>

---

 Makefile |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

applies-to: b93e1c78095bf4ace0806ab70295931f6da28174
65e5d3d6d31af3dda6d5cfd4e0745f34118955c3
diff --git a/Makefile b/Makefile
index df3c6eb..dc7581d 100644
--- a/Makefile
+++ b/Makefile
@@ -64,18 +64,21 @@ LDFLAGS =
 ALL_CFLAGS = $(CFLAGS)
 ALL_LDFLAGS = $(LDFLAGS)
 
-prefix = $(HOME)
-bindir = $(prefix)/bin
-template_dir = $(prefix)/share/git-core/templates/
-GIT_PYTHON_DIR = $(prefix)/share/git-core/python
-# DESTDIR=
-
 CC = gcc
 AR = ar
 TAR = tar
 INSTALL = install
 RPMBUILD = rpmbuild
 
+# Include local definitions, if any.
+-include Makefile.localdef
+
+prefix ?= $(HOME)
+bindir ?= $(prefix)/bin
+template_dir ?= $(prefix)/share/git-core/templates/
+GIT_PYTHON_DIR ?= $(prefix)/share/git-core/python
+# DESTDIR=
+
 # sparse is architecture-neutral, which means that we need to tell it
 # explicitly what architecture to check for. Fix this up for yours..
 SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
---
0.99.9h

Re: [PATCH] Include Makefile.localdef in Makefile, if it exists.

From: Johannes Schindelin <hidden>
Date: 2016-06-15 22:42:14

Hi,

On Fri, 2 Dec 2005, Jason Riedy wrote:
Makefile.localdef is just a hook for local definitions.  Users
can track their definitions in a branch and not worry about
merge conflicts.
I wonder why you do not just override them in config.mak, which was 
introduced just for that purpose...

Hth,
Dscho

Re: [PATCH] Include Makefile.localdef in Makefile, if it exists.

From: Jason Riedy <hidden>
Date: 2016-06-15 22:42:14

And Johannes Schindelin writes:
 - I wonder why you do not just override them in config.mak, which was 
 - introduced just for that purpose...

'Cause I'm a git and didn't notice it, thanks.  The prefix stuff 
probably ought to be moved below the -include config.mak so 
someone need only change $(prefix) and not the rest.  I might
send along such a patch, along with a note about config.mak in
INSTALL...

Jason

Re: [PATCH] Include Makefile.localdef in Makefile, if it exists.

From: Johannes Schindelin <hidden>
Date: 2016-06-15 22:42:14

Hi,

On Fri, 2 Dec 2005, Jason Riedy wrote:
And Johannes Schindelin writes:
 - I wonder why you do not just override them in config.mak, which was 
 - introduced just for that purpose...

'Cause I'm a git and didn't notice it, thanks.
Nopraw.
The prefix stuff probably ought to be moved below the -include 
config.mak so someone need only change $(prefix) and not the rest.  I 
might send along such a patch, along with a note about config.mak in 
INSTALL...
Actually, it is a feature that you can override prefix and template_dir 
independently.

Hth,
Dscho

Re: [PATCH] Include Makefile.localdef in Makefile, if it exists.

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:42:14

Jason Riedy [off-list ref] writes:
...  I might
send along such a patch, along with a note about config.mak in
INSTALL...
Please don't, unless you are confident your change can satisfy
_everybody_.

People with makefile needs that are more "advanced" (that is,
something a simple "-include config.mak" cannot easily satisfy)
can do any number of things without touching Makefile I ship.
Examples include:

 - have own makefile, include Makefile.

 - have onw Make script, run "make -f Makefile" with preset
   "bindir=HERE NO_XXX=NoThanks" to reduce typing.

 - have own makefile, whose build target depends on Make.file
   and runs "make -f Make.file", with a build rule for Make.file
   to munge Makefile using custom perl/sed into it.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help