Merge http://www.kernel.org/pub/scm/gitk/gitk
[git.git] / templates / Makefile
index 6b2a900..221a086 100644 (file)
@@ -1,9 +1,10 @@
 # make and install sample templates
 
-INSTALL=install
-prefix=$(HOME)
-template_dir=$(prefix)/share/git-core/templates/
-# dest=
+INSTALL ?= install
+TAR ?= tar
+prefix ?= $(HOME)
+template_dir ?= $(prefix)/share/git-core/templates/
+# DESTDIR=
 
 all: boilerplates custom
        find blt
@@ -34,5 +35,6 @@ clean:
        rm -rf blt
 
 install: all
-       $(INSTALL) -d -m755 $(dest)$(template_dir)
-       tar Ccf blt - . | tar Cxf $(dest)$(template_dir) -
+       $(INSTALL) -d -m755 $(DESTDIR)$(template_dir)
+       (cd blt && $(TAR) cf - .) | \
+       (cd $(DESTDIR)$(template_dir) && $(TAR) xf -)