[PATCH] Add DEST Makefile variable

2005-04-21 Thread Matthias Urlichs
This patch changes the Makefile to add a DEST variable (still defaulting
to ~/bin/) so that people (or scripts) can trivially install git
Somewhere Else.

Signed-Off-By: Matthias Urlichs [EMAIL PROTECTED]

--- 42a073eb6b5bb397a3e8768a032463a7fa02e6b9/Makefile  (mode:100644 
sha1:1fef8e4ae93b2abae2ceb69c265c7c8176fe44c0)
+++ 265515f9c4f089b1b61e9d2312c4b3babe189618/Makefile  (mode:100644 
sha1:af90bd4e1d53fa3b930c77a240b4681a0b2a886e)
@@ -8,6 +8,7 @@
 # break unless your underlying filesystem supports those sub-second times
 # (my ext3 doesn't).
 CFLAGS=-g -O3 -Wall
+DEST=$(HOME)/bin
 
 CC=gcc
 AR=ar
@@ -56,7 +57,7 @@
@chmod +x $@
 
 install: $(PROG) $(GEN_SCRIPT)
-   install $(PROG) $(SCRIPT) $(GEN_SCRIPT) $(HOME)/bin/
+   install $(PROG) $(SCRIPT) $(GEN_SCRIPT) $(DEST)/
 
 clean:
rm -f *.o $(PROG) $(GEN_SCRIPT) $(LIB_FILE)
-
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] Add DEST Makefile variable

2005-04-21 Thread Matthias Urlichs
Hi,

Junio C Hamano:
 I sent essentially the same some time ago and got a comment to
 follow established naming convention.
 
Well, for a Makefile which installs in basically one directory, that
seems to be overkill.

 # DESTDIR=
 BINDIR=$(HOME)/bin
 install foobar $(DESTDIR)$(BINDIR)/
 
That doesn't make sense; if you set DESTDIR, you are not going to
install in $HOME.

-- 
Matthias Urlichs   |   {M:U} IT Design @ m-u-it.de   |  [EMAIL PROTECTED]
-
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html