]> git.ipfire.org Git - thirdparty/git.git/blob - Makefile
git-gui: set NO_MSGFMT to force using pure tcl replacement in msysgit
[thirdparty/git.git] / Makefile
1 all::
2
3 # Define V=1 to have a more verbose compile.
4 #
5 # Define NO_MSGFMT if you do not have msgfmt from the GNU gettext
6 # package and want to use our rough pure Tcl po->msg translator.
7 # TCL_PATH must be vaild for this to work.
8 #
9
10 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
11 @$(SHELL_PATH) ./GIT-VERSION-GEN
12 -include GIT-VERSION-FILE
13
14 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
15 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
16
17 SCRIPT_SH = git-gui.sh
18 GITGUI_MAIN := git-gui
19 GITGUI_BUILT_INS = git-citool
20 ALL_LIBFILES = $(wildcard lib/*.tcl)
21 PRELOAD_FILES = lib/class.tcl
22
23 ifndef SHELL_PATH
24 SHELL_PATH = /bin/sh
25 endif
26
27 ifndef gitexecdir
28 gitexecdir := $(shell git --exec-path)
29 endif
30
31 ifndef sharedir
32 sharedir := $(dir $(gitexecdir))share
33 endif
34
35 ifndef INSTALL
36 INSTALL = install
37 endif
38
39 RM_RF ?= rm -rf
40 RMDIR ?= rmdir
41
42 INSTALL_D0 = $(INSTALL) -d -m755 # space is required here
43 INSTALL_D1 =
44 INSTALL_R0 = $(INSTALL) -m644 # space is required here
45 INSTALL_R1 =
46 INSTALL_X0 = $(INSTALL) -m755 # space is required here
47 INSTALL_X1 =
48 INSTALL_A0 = find # space is required here
49 INSTALL_A1 = | cpio -pud
50 INSTALL_L0 = rm -f # space is required here
51 INSTALL_L1 = && ln # space is required here
52 INSTALL_L2 =
53 INSTALL_L3 =
54
55 REMOVE_D0 = $(RMDIR) # space is required here
56 REMOVE_D1 = || true
57 REMOVE_F0 = $(RM_RF) # space is required here
58 REMOVE_F1 =
59 CLEAN_DST = true
60
61 ifndef V
62 QUIET = @
63 QUIET_GEN = $(QUIET)echo ' ' GEN '$@' &&
64 QUIET_INDEX = $(QUIET)echo ' ' INDEX $(dir $@) &&
65 QUIET_MSGFMT0 = $(QUIET)printf ' MSGFMT %12s ' $@ && v=`
66 QUIET_MSGFMT1 = 2>&1` && echo "$$v" | sed -e 's/fuzzy translations/fuzzy/' | sed -e 's/ messages//g'
67 QUIET_2DEVNULL = 2>/dev/null
68
69 INSTALL_D0 = dir=
70 INSTALL_D1 = && echo ' ' DEST $$dir && $(INSTALL) -d -m755 "$$dir"
71 INSTALL_R0 = src=
72 INSTALL_R1 = && echo ' ' INSTALL 644 `basename $$src` && $(INSTALL) -m644 $$src
73 INSTALL_X0 = src=
74 INSTALL_X1 = && echo ' ' INSTALL 755 `basename $$src` && $(INSTALL) -m755 $$src
75 INSTALL_A0 = src=
76 INSTALL_A1 = && echo ' ' INSTALL ' ' `basename "$$src"` && find "$$src" | cpio -pud
77
78 INSTALL_L0 = dst=
79 INSTALL_L1 = && src=
80 INSTALL_L2 = && dst=
81 INSTALL_L3 = && echo ' ' 'LINK ' `basename "$$dst"` '->' `basename "$$src"` && rm -f "$$dst" && ln "$$src" "$$dst"
82
83 CLEAN_DST = echo ' ' UNINSTALL
84 REMOVE_D0 = dir=
85 REMOVE_D1 = && echo ' ' REMOVE $$dir && test -d "$$dir" && $(RMDIR) "$$dir" || true
86 REMOVE_F0 = dst=
87 REMOVE_F1 = && echo ' ' REMOVE `basename "$$dst"` && $(RM_RF) "$$dst"
88 endif
89
90 TCL_PATH ?= tclsh
91 TCLTK_PATH ?= wish
92 TKFRAMEWORK = /Library/Frameworks/Tk.framework/Resources/Wish.app
93
94 ifeq ($(findstring $(MAKEFLAGS),s),s)
95 QUIET_GEN =
96 endif
97
98 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
99 gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
100 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
101 TCL_PATH_SQ = $(subst ','\'',$(TCL_PATH))
102 TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH))
103 TCLTK_PATH_SED = $(subst ','\'',$(subst \,\\,$(TCLTK_PATH)))
104
105 gg_libdir ?= $(sharedir)/git-gui/lib
106 libdir_SQ = $(subst ','\'',$(gg_libdir))
107 libdir_SED = $(subst ','\'',$(subst \,\\,$(gg_libdir)))
108 exedir = $(dir $(gitexecdir))share/git-gui/lib
109
110 GITGUI_SCRIPT := $$0
111 GITGUI_RELATIVE :=
112 GITGUI_MACOSXAPP :=
113
114 ifeq ($(exedir),$(gg_libdir))
115 GITGUI_RELATIVE := 1
116 endif
117
118 ifeq ($(uname_O),Cygwin)
119 GITGUI_SCRIPT := `cygpath --windows --absolute "$(GITGUI_SCRIPT)"`
120 ifeq ($(GITGUI_RELATIVE),)
121 gg_libdir := $(shell cygpath --windows --absolute "$(gg_libdir)")
122 endif
123 endif
124 ifeq ($(uname_S),Darwin)
125 ifeq ($(shell test -d $(TKFRAMEWORK) && echo y),y)
126 GITGUI_MACOSXAPP := YesPlease
127 endif
128 endif
129 ifneq (,$(findstring MINGW,$(uname_S)))
130 NO_MSGFMT=1
131 endif
132
133 ifdef GITGUI_MACOSXAPP
134 GITGUI_MAIN := git-gui.tcl
135
136 git-gui: GIT-VERSION-FILE GIT-GUI-VARS
137 $(QUIET_GEN)rm -f $@ $@+ && \
138 echo '#!$(SHELL_PATH_SQ)' >$@+ && \
139 echo 'if test "z$$*" = zversion ||' >>$@+ && \
140 echo ' test "z$$*" = z--version' >>$@+ && \
141 echo then >>$@+ && \
142 echo ' 'echo \'git-gui version '$(GITGUI_VERSION)'\' >>$@+ && \
143 echo else >>$@+ && \
144 echo ' 'exec \''$(libdir_SQ)/Git Gui.app/Contents/MacOS/Wish'\' \
145 '"$$0" "$$@"' >>$@+ && \
146 echo fi >>$@+ && \
147 chmod +x $@+ && \
148 mv $@+ $@
149
150 Git\ Gui.app: GIT-VERSION-FILE GIT-GUI-VARS \
151 macosx/Info.plist \
152 macosx/git-gui.icns \
153 macosx/AppMain.tcl \
154 $(TKFRAMEWORK)/Contents/MacOS/Wish
155 $(QUIET_GEN)rm -rf '$@' '$@'+ && \
156 mkdir -p '$@'+/Contents/MacOS && \
157 mkdir -p '$@'+/Contents/Resources/Scripts && \
158 cp '$(subst ','\'',$(TKFRAMEWORK))/Contents/MacOS/Wish' \
159 '$@'+/Contents/MacOS && \
160 cp macosx/git-gui.icns '$@'+/Contents/Resources && \
161 sed -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
162 macosx/Info.plist \
163 >'$@'+/Contents/Info.plist && \
164 sed -e 's|@@gitexecdir@@|$(gitexecdir_SQ)|' \
165 -e 's|@@GITGUI_LIBDIR@@|$(libdir_SED)|' \
166 macosx/AppMain.tcl \
167 >'$@'+/Contents/Resources/Scripts/AppMain.tcl && \
168 mv '$@'+ '$@'
169 endif
170
171 $(GITGUI_MAIN): git-gui.sh GIT-VERSION-FILE GIT-GUI-VARS
172 $(QUIET_GEN)rm -f $@ $@+ && \
173 sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \
174 -e '1,30s|^ argv0=$$0| argv0=$(GITGUI_SCRIPT)|' \
175 -e '1,30s|^ exec wish | exec '\''$(TCLTK_PATH_SED)'\'' |' \
176 -e 's/@@GITGUI_VERSION@@/$(GITGUI_VERSION)/g' \
177 -e 's|@@GITGUI_RELATIVE@@|$(GITGUI_RELATIVE)|' \
178 -e '$(GITGUI_RELATIVE)s|@@GITGUI_LIBDIR@@|$(libdir_SED)|' \
179 git-gui.sh >$@+ && \
180 chmod +x $@+ && \
181 mv $@+ $@
182
183 XGETTEXT ?= xgettext
184 ifdef NO_MSGFMT
185 MSGFMT ?= $(TCL_PATH) po/po2msg.sh
186 else
187 MSGFMT ?= msgfmt
188 endif
189
190 msgsdir = $(gg_libdir)/msgs
191 msgsdir_SQ = $(subst ','\'',$(msgsdir))
192 PO_TEMPLATE = po/git-gui.pot
193 ALL_POFILES = $(wildcard po/*.po)
194 ALL_MSGFILES = $(subst .po,.msg,$(ALL_POFILES))
195
196 $(PO_TEMPLATE): $(SCRIPT_SH) $(ALL_LIBFILES)
197 $(XGETTEXT) -kmc -LTcl -o $@ $(SCRIPT_SH) $(ALL_LIBFILES)
198 update-po:: $(PO_TEMPLATE)
199 $(foreach p, $(ALL_POFILES), echo Updating $p ; msgmerge -U $p $(PO_TEMPLATE) ; )
200 $(ALL_MSGFILES): %.msg : %.po
201 $(QUIET_MSGFMT0)$(MSGFMT) --statistics --tcl $< -l $(basename $(notdir $<)) -d $(dir $@) $(QUIET_MSGFMT1)
202
203 lib/tclIndex: $(ALL_LIBFILES) GIT-GUI-VARS
204 $(QUIET_INDEX)if echo \
205 $(foreach p,$(PRELOAD_FILES),source $p\;) \
206 auto_mkindex lib '*.tcl' \
207 | $(TCL_PATH) $(QUIET_2DEVNULL); then : ok; \
208 else \
209 echo 1>&2 " * $(TCL_PATH) failed; using unoptimized loading"; \
210 rm -f $@ ; \
211 echo '# Autogenerated by git-gui Makefile' >$@ && \
212 echo >>$@ && \
213 $(foreach p,$(PRELOAD_FILES) $(ALL_LIBFILES),echo '$(subst lib/,,$p)' >>$@ &&) \
214 echo >>$@ ; \
215 fi
216
217 TRACK_VARS = \
218 $(subst ','\'',SHELL_PATH='$(SHELL_PATH_SQ)') \
219 $(subst ','\'',TCL_PATH='$(TCL_PATH_SQ)') \
220 $(subst ','\'',TCLTK_PATH='$(TCLTK_PATH_SQ)') \
221 $(subst ','\'',gitexecdir='$(gitexecdir_SQ)') \
222 $(subst ','\'',gg_libdir='$(libdir_SQ)') \
223 GITGUI_MACOSXAPP=$(GITGUI_MACOSXAPP) \
224 #end TRACK_VARS
225
226 GIT-GUI-VARS: .FORCE-GIT-GUI-VARS
227 @VARS='$(TRACK_VARS)'; \
228 if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
229 echo 1>&2 " * new locations or Tcl/Tk interpreter"; \
230 echo 1>$@ "$$VARS"; \
231 fi
232
233 ifdef GITGUI_MACOSXAPP
234 all:: git-gui Git\ Gui.app
235 endif
236 all:: $(GITGUI_MAIN) lib/tclIndex $(ALL_MSGFILES)
237
238 install: all
239 $(QUIET)$(INSTALL_D0)'$(DESTDIR_SQ)$(gitexecdir_SQ)' $(INSTALL_D1)
240 $(QUIET)$(INSTALL_X0)git-gui $(INSTALL_X1) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
241 $(QUIET)$(foreach p,$(GITGUI_BUILT_INS), $(INSTALL_L0)'$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' $(INSTALL_L1)'$(DESTDIR_SQ)$(gitexecdir_SQ)/git-gui' $(INSTALL_L2)'$(DESTDIR_SQ)$(gitexecdir_SQ)/$p' $(INSTALL_L3) &&) true
242 $(QUIET)$(INSTALL_D0)'$(DESTDIR_SQ)$(libdir_SQ)' $(INSTALL_D1)
243 $(QUIET)$(INSTALL_R0)lib/tclIndex $(INSTALL_R1) '$(DESTDIR_SQ)$(libdir_SQ)'
244 $(QUIET)$(INSTALL_R0)lib/git-gui.ico $(INSTALL_R1) '$(DESTDIR_SQ)$(libdir_SQ)'
245 ifdef GITGUI_MACOSXAPP
246 $(QUIET)$(INSTALL_A0)'Git Gui.app' $(INSTALL_A1) '$(DESTDIR_SQ)$(libdir_SQ)'
247 $(QUIET)$(INSTALL_X0)git-gui.tcl $(INSTALL_X1) '$(DESTDIR_SQ)$(libdir_SQ)'
248 endif
249 $(QUIET)$(foreach p,$(ALL_LIBFILES), $(INSTALL_R0)$p $(INSTALL_R1) '$(DESTDIR_SQ)$(libdir_SQ)' &&) true
250 $(QUIET)$(INSTALL_D0)'$(DESTDIR_SQ)$(msgsdir_SQ)' $(INSTALL_D1)
251 $(QUIET)$(foreach p,$(ALL_MSGFILES), $(INSTALL_R0)$p $(INSTALL_R1) '$(DESTDIR_SQ)$(msgsdir_SQ)' &&) true
252
253 uninstall:
254 $(QUIET)$(CLEAN_DST) '$(DESTDIR_SQ)$(gitexecdir_SQ)'
255 $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(gitexecdir_SQ)'/git-gui $(REMOVE_F1)
256 $(QUIET)$(foreach p,$(GITGUI_BUILT_INS), $(REMOVE_F0)'$(DESTDIR_SQ)$(gitexecdir_SQ)'/$p $(REMOVE_F1) &&) true
257 $(QUIET)$(CLEAN_DST) '$(DESTDIR_SQ)$(libdir_SQ)'
258 $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)'/tclIndex $(REMOVE_F1)
259 $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)'/git-gui.ico $(REMOVE_F1)
260 ifdef GITGUI_MACOSXAPP
261 $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)/Git Gui.app' $(REMOVE_F1)
262 $(QUIET)$(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)'/git-gui.tcl $(REMOVE_F1)
263 endif
264 $(QUIET)$(foreach p,$(ALL_LIBFILES), $(REMOVE_F0)'$(DESTDIR_SQ)$(libdir_SQ)'/$(notdir $p) $(REMOVE_F1) &&) true
265 $(QUIET)$(CLEAN_DST) '$(DESTDIR_SQ)$(msgsdir_SQ)'
266 $(QUIET)$(foreach p,$(ALL_MSGFILES), $(REMOVE_F0)'$(DESTDIR_SQ)$(msgsdir_SQ)'/$(notdir $p) $(REMOVE_F1) &&) true
267 $(QUIET)$(REMOVE_D0)'$(DESTDIR_SQ)$(gitexecdir_SQ)' $(REMOVE_D1)
268 $(QUIET)$(REMOVE_D0)'$(DESTDIR_SQ)$(msgsdir_SQ)' $(REMOVE_D1)
269 $(QUIET)$(REMOVE_D0)'$(DESTDIR_SQ)$(libdir_SQ)' $(REMOVE_D1)
270 $(QUIET)$(REMOVE_D0)`dirname '$(DESTDIR_SQ)$(libdir_SQ)'` $(REMOVE_D1)
271
272 dist-version:
273 @mkdir -p $(TARDIR)
274 @echo $(GITGUI_VERSION) > $(TARDIR)/version
275
276 clean::
277 $(RM_RF) $(GITGUI_MAIN) lib/tclIndex po/*.msg
278 $(RM_RF) GIT-VERSION-FILE GIT-GUI-VARS
279 ifdef GITGUI_MACOSXAPP
280 $(RM_RF) 'Git Gui.app'* git-gui
281 endif
282
283 .PHONY: all install uninstall dist-version clean
284 .PHONY: .FORCE-GIT-VERSION-FILE
285 .PHONY: .FORCE-GIT-GUI-VARS