Document "git commit"
[git/dscho.git] / templates / Makefile
blob6b2a90071bcf1fc8e494b08f3738a34f35bb9cd0
1 # make and install sample templates
3 INSTALL=install
4 prefix=$(HOME)
5 template_dir=$(prefix)/share/git-core/templates/
6 # dest=
8 all: boilerplates custom
9 find blt
11 # Put templates that can be copied straight from the source
12 # in a file direc--tory--file in the source. They will be
13 # just copied to the destination.
14 boilerplates:
15 ls *--* 2>/dev/null | \
16 while read boilerplate; \
17 do \
18 case "$$boilerplate" in *~) continue ;; esac && \
19 dst=`echo "$$boilerplate" | sed -e 's|^this|.|;s|--|/|g'` && \
20 dir=`expr "$$dst" : '\(.*\)/'` && \
21 mkdir -p blt/$$dir && \
22 case "$$boilerplate" in \
23 *--) ;; \
24 *) cp $$boilerplate blt/$$dst ;; \
25 esac || exit; \
26 done || exit
28 # If you need build-tailored templates, build them into blt/
29 # directory yourself here.
30 custom:
31 : no custom templates yet
33 clean:
34 rm -rf blt
36 install: all
37 $(INSTALL) -d -m755 $(dest)$(template_dir)
38 tar Ccf blt - . | tar Cxf $(dest)$(template_dir) -