]> git.ipfire.org Git - thirdparty/git.git/blame - Makefile
git-gui: Revert "git-gui: Display all authors of git-gui."
[thirdparty/git.git] / Makefile
CommitLineData
41bdcda3
SP
1all::
2
0b5ea163
SP
3# Define V=1 to have a more verbose compile.
4#
5
f1cee4e6
SP
6GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
7 @$(SHELL_PATH) ./GIT-VERSION-GEN
8-include GIT-VERSION-FILE
9
bb616ddd 10SCRIPT_SH = git-gui.sh
41bdcda3 11GITGUI_BUILT_INS = git-citool
bb616ddd 12ALL_PROGRAMS = $(GITGUI_BUILT_INS) $(patsubst %.sh,%,$(SCRIPT_SH))
41bdcda3
SP
13
14ifndef SHELL_PATH
15 SHELL_PATH = /bin/sh
16endif
b3678bac 17
663e7cf8
SP
18ifndef gitexecdir
19 gitexecdir := $(shell git --exec-path)
20endif
21
22ifndef INSTALL
23 INSTALL = install
24endif
b3678bac 25
0b5ea163
SP
26ifndef V
27 QUIET_GEN = @echo ' ' GEN $@;
28 QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
29endif
30
b3678bac
SP
31DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
32gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
41bdcda3
SP
33SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
34
bb616ddd 35$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
0b5ea163 36 $(QUIET_GEN)rm -f $@ $@+ && \
bb616ddd 37 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
7e81d4ee 38 -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
0b5ea163 39 $@.sh >$@+ && \
0b5ea163 40 chmod +x $@+ && \
41bdcda3
SP
41 mv $@+ $@
42
43$(GITGUI_BUILT_INS): git-gui
0b5ea163 44 $(QUIET_BUILT_IN)rm -f $@ && ln git-gui $@
41bdcda3 45
bb616ddd
SP
46# These can record GITGUI_VERSION
47$(patsubst %.sh,%,$(SCRIPT_SH)): GIT-VERSION-FILE
48
41bdcda3 49all:: $(ALL_PROGRAMS)
b3678bac
SP
50
51install: all
52 $(INSTALL) -d -m755 '$(DESTDIR_SQ)$(gitexecdir_SQ)'
53 $(INSTALL) git-gui '$(DESTDIR_SQ)$(gitexecdir_SQ)'
41bdcda3
SP
54 $(foreach p,$(GITGUI_BUILT_INS), rm -f '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' && ln '$(DESTDIR_SQ)$(gitexecdir_SQ)/git-gui' '$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' ;)
55
bb616ddd 56dist-version:
5d643cd3
SP
57 @mkdir -p $(TARDIR)
58 @echo $(GITGUI_VERSION) > $(TARDIR)/version
59
41bdcda3 60clean::
bb616ddd 61 rm -f $(ALL_PROGRAMS) GIT-VERSION-FILE
f1cee4e6 62
5d643cd3 63.PHONY: all install dist-version clean
f1cee4e6 64.PHONY: .FORCE-GIT-VERSION-FILE