Error message from get_sha1() on ambiguous short SHA1.
[git.git] / templates / Makefile
blob221a0860661a3adb43470aa22d30b54601223b3d
1 # make and install sample templates
3 INSTALL ?= install
4 TAR ?= tar
5 prefix ?= $(HOME)
6 template_dir ?= $(prefix)/share/git-core/templates/
7 # DESTDIR=
9 all: boilerplates custom
10 find blt
12 # Put templates that can be copied straight from the source
13 # in a file direc--tory--file in the source. They will be
14 # just copied to the destination.
15 boilerplates:
16 ls *--* 2>/dev/null | \
17 while read boilerplate; \
18 do \
19 case "$$boilerplate" in *~) continue ;; esac && \
20 dst=`echo "$$boilerplate" | sed -e 's|^this|.|;s|--|/|g'` && \
21 dir=`expr "$$dst" : '\(.*\)/'` && \
22 mkdir -p blt/$$dir && \
23 case "$$boilerplate" in \
24 *--) ;; \
25 *) cp $$boilerplate blt/$$dst ;; \
26 esac || exit; \
27 done || exit
29 # If you need build-tailored templates, build them into blt/
30 # directory yourself here.
31 custom:
32 : no custom templates yet
34 clean:
35 rm -rf blt
37 install: all
38 $(INSTALL) -d -m755 $(DESTDIR)$(template_dir)
39 (cd blt && $(TAR) cf - .) | \
40 (cd $(DESTDIR)$(template_dir) && $(TAR) xf -)