1# make and install sample templates
2
3INSTALL ?= install
4TAR ?= tar
5prefix ?= $(HOME)
6template_dir ?= $(prefix)/share/git-core/templates/
7# DESTDIR=
8
9# Shell quote (do not use $(call) to accomodate ancient setups);
10DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
11template_dir_SQ = $(subst ','\'',$(template_dir))
12
13all: boilerplates.made custom
14
15# Put templates that can be copied straight from the source
16# in a file direc--tory--file in the source. They will be
17# just copied to the destination.
18
19bpsrc = $(filter-out %~,$(wildcard *--*))
20boilerplates.made : $(bpsrc)
21 ls *--* 2>/dev/null | \
22 while read boilerplate; \
23 do \
24 case "$$boilerplate" in *~) continue ;; esac && \
25 dst=`echo "$$boilerplate" | sed -e 's|^this|.|;s|--|/|g'` && \
26 dir=`expr "$$dst" : '\(.*\)/'` && \
27 mkdir -p blt/$$dir && \
28 case "$$boilerplate" in \
29 *--) ;; \
30 *) cp $$boilerplate blt/$$dst ;; \
31 esac || exit; \
32 done || exit
33 date >$@
34
35# If you need build-tailored templates, build them into blt/
36# directory yourself here.
37custom:
38 : no custom templates yet
39
40clean:
41 rm -rf blt boilerplates.made
42
43install: all
44 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(template_dir_SQ)'
45 (cd blt && $(TAR) cf - .) | \
46 (cd '$(DESTDIR_SQ)$(template_dir_SQ)' && $(TAR) xf -)