Support for pickaxe matching regular expressions
[git/dscho.git] / templates / Makefile
blob8f7f4fec34ad76b85d61f20821f18a1d3ca9a3b2
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 # Shell quote;
10 # Result of this needs to be placed inside ''
11 shq = $(subst ','\'',$(1))
12 # This has surrounding ''
13 shellquote = '$(call shq,$(1))'
15 all: boilerplates.made custom
17 # Put templates that can be copied straight from the source
18 # in a file direc--tory--file in the source. They will be
19 # just copied to the destination.
21 bpsrc = $(filter-out %~,$(wildcard *--*))
22 boilerplates.made : $(bpsrc)
23 ls *--* 2>/dev/null | \
24 while read boilerplate; \
25 do \
26 case "$$boilerplate" in *~) continue ;; esac && \
27 dst=`echo "$$boilerplate" | sed -e 's|^this|.|;s|--|/|g'` && \
28 dir=`expr "$$dst" : '\(.*\)/'` && \
29 mkdir -p blt/$$dir && \
30 case "$$boilerplate" in \
31 *--) ;; \
32 *) cp $$boilerplate blt/$$dst ;; \
33 esac || exit; \
34 done || exit
35 date >$@
37 # If you need build-tailored templates, build them into blt/
38 # directory yourself here.
39 custom:
40 : no custom templates yet
42 clean:
43 rm -rf blt boilerplates.made
45 install: all
46 $(INSTALL) -d -m755 $(call shellquote,$(DESTDIR)$(template_dir))
47 (cd blt && $(TAR) cf - .) | \
48 (cd $(call shellquote,$(DESTDIR)$(template_dir)) && $(TAR) xf -)