1 # make and install sample templates
11 template_instdir ?
= $(prefix)/share
/git-core
/templates
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
)umask
022 && ls
*--* 2>/dev
/null | \
27 while read boilerplate
; \
29 case
"$$boilerplate" in
*~
) continue
;; esac
&& \
30 dst
=`echo "$$boilerplate" | sed -e 's|^this|.|;s|--|/|g'` && \
31 dir=`expr "$$dst" : '\(.*\)/'` && \
32 mkdir
-p blt
/$$dir && \
33 case
"$$boilerplate" in \
36 cp
$$boilerplate blt
/$$dst && \
37 if
test -x
"blt/$$dst"; then rx
=rx
; else rx
=r
; fi
&& \
38 chmod a
+$$rx "blt/$$dst" || exit
; \
42 # If you need build-tailored templates, build them into blt/
43 # directory yourself here.
45 $(QUIET
): no custom templates yet
48 $(RM
) -r blt boilerplates.made
51 $(INSTALL
) -d
-m
755 '$(DESTDIR_SQ)$(template_instdir_SQ)'
52 (cd blt
&& $(TAR
) cf
- .
) | \
53 (cd
'$(DESTDIR_SQ)$(template_instdir_SQ)' && umask
022 && $(TAR
) xfo
-)