Git development
 help / color / mirror / Atom feed
* [PATCH] Support custom build options in config.mak
@ 2005-10-11  7:49 Johannes Schindelin
  2005-10-11  8:07 ` Junio C Hamano
  2005-10-11 17:18 ` Daniel Barkalow
  0 siblings, 2 replies; 4+ messages in thread
From: Johannes Schindelin @ 2005-10-11  7:49 UTC (permalink / raw)
  To: git, junkio

With this patch, it is possible to store configuration options like
NO_CURL=YesPlease or NO_OPENSSL=YesPlease into a file named
config.mak, which will be included in the Makefile.

Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>

---

 Makefile |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

applies-to: 1abfad3540e705eb33e589a8e8cf2be781c89030
94ca33678ce4f582d9bcbaa7baf9223e026c0b13
diff --git a/Makefile b/Makefile
index ea4332b..4e2fa7e 100644
--- a/Makefile
+++ b/Makefile
@@ -213,6 +213,10 @@ ifneq (,$(findstring arm,$(uname_M)))
 	ARM_SHA1 = YesPlease
 endif
 
+ifneq (,$(wildcard config.mak))
+include config.mak
+endif
+
 ifndef NO_CURL
 	ifdef CURLDIR
 		# This is still problematic -- gcc does not want -R.
---
0.99.8.GIT

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

end of thread, other threads:[~2005-10-11 17:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-11  7:49 [PATCH] Support custom build options in config.mak Johannes Schindelin
2005-10-11  8:07 ` Junio C Hamano
2005-10-11 11:08   ` Johannes Schindelin
2005-10-11 17:18 ` Daniel Barkalow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox