3071baf493442e8bfb3f34252f9c0d13801343b1
[platform/upstream/git.git] / contrib / subtree / Makefile
1 # The default target of this Makefile is...
2 all::
3
4 -include ../../config.mak.autogen
5 -include ../../config.mak
6
7 prefix ?= /usr/local
8 gitexecdir ?= $(prefix)/libexec/git-core
9 mandir ?= $(prefix)/share/man
10 man1dir ?= $(mandir)/man1
11 htmldir ?= $(prefix)/share/doc/git-doc
12
13 ../../GIT-VERSION-FILE: FORCE
14         $(MAKE) -C ../../ GIT-VERSION-FILE
15
16 -include ../../GIT-VERSION-FILE
17
18 # this should be set to a 'standard' bsd-type install program
19 INSTALL  ?= install
20 RM       ?= rm -f
21
22 ASCIIDOC = asciidoc
23 XMLTO    = xmlto
24
25 ifndef SHELL_PATH
26         SHELL_PATH = /bin/sh
27 endif
28 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
29
30 ASCIIDOC_CONF = ../../Documentation/asciidoc.conf
31 MANPAGE_XSL   = ../../Documentation/manpage-normal.xsl
32
33 GIT_SUBTREE_SH := git-subtree.sh
34 GIT_SUBTREE    := git-subtree
35
36 GIT_SUBTREE_DOC := git-subtree.1
37 GIT_SUBTREE_XML := git-subtree.xml
38 GIT_SUBTREE_TXT := git-subtree.txt
39 GIT_SUBTREE_HTML := git-subtree.html
40
41 all:: $(GIT_SUBTREE)
42
43 $(GIT_SUBTREE): $(GIT_SUBTREE_SH)
44         sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' $< >$@
45         chmod +x $@
46
47 doc: $(GIT_SUBTREE_DOC) $(GIT_SUBTREE_HTML)
48
49 install: $(GIT_SUBTREE)
50         $(INSTALL) -d -m 755 $(DESTDIR)$(gitexecdir)
51         $(INSTALL) -m 755 $(GIT_SUBTREE) $(DESTDIR)$(gitexecdir)
52
53 install-doc: install-man install-html
54
55 install-man: $(GIT_SUBTREE_DOC)
56         $(INSTALL) -d -m 755 $(DESTDIR)$(man1dir)
57         $(INSTALL) -m 644 $^ $(DESTDIR)$(man1dir)
58
59 install-html: $(GIT_SUBTREE_HTML)
60         $(INSTALL) -d -m 755 $(DESTDIR)$(htmldir)
61         $(INSTALL) -m 644 $^ $(DESTDIR)$(htmldir)
62
63 $(GIT_SUBTREE_DOC): $(GIT_SUBTREE_XML)
64         $(XMLTO) -m $(MANPAGE_XSL) man $^
65
66 $(GIT_SUBTREE_XML): $(GIT_SUBTREE_TXT)
67         $(ASCIIDOC) -b docbook -d manpage -f $(ASCIIDOC_CONF) \
68                 -agit_version=$(GIT_VERSION) $^
69
70 $(GIT_SUBTREE_HTML): $(GIT_SUBTREE_TXT)
71         $(ASCIIDOC) -b xhtml11 -d manpage -f $(ASCIIDOC_CONF) \
72                 -agit_version=$(GIT_VERSION) $^
73
74 test:
75         $(MAKE) -C t/ test
76
77 clean:
78         $(RM) $(GIT_SUBTREE)
79         $(RM) *.xml *.html *.1
80
81 .PHONY: FORCE