Code

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