summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: cceae4c840dfb5947c2b07f2348ff623b77fe8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# Makefile for help2man

# Copyright (C) 2012, 2014, 2022 Free Software Foundation, Inc.

# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.  This file is offered as-is,
# without any warranty.

# Written by Brendan O'Dea <bod@debian.org>

srcdir = @srcdir@
auxdir = @auxdir@
prefix = @prefix@
exec_prefix = @exec_prefix@

bindir = @bindir@
libdir = @libdir@
pkglibdir = $(libdir)/help2man
datarootdir = @datarootdir@
mandir = @mandir@
datadir = @datadir@
infodir = @infodir@
localedir = $(datadir)/locale

export SHELL = @SHELL@
export VPATH = .:$(srcdir)

DESTDIR =
LINGUAS = $(basename $(notdir $(wildcard $(srcdir)/po/*.po)))
LINGUAS_TEXI = $(basename $(notdir $(wildcard $(srcdir)/po-texi/*.po)))

CC = @CC@
PERL = @PERL@
LIBS = @LIBS@
FIND_VPATH = $(auxdir)/find-vpath  # locate a file in $VPATH
MKINSTALLDIRS = $(auxdir)/mkinstalldirs
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_INFO = @INSTALL_INFO@
LOOKUP_LOCALE = $(auxdir)/lookup-locale  # get full locale from extension
MAKEINFO = @MAKEINFO@
MSGFMT = @MSGFMT@
XGETTEXT = @XGETTEXT@
MSGMERGE = @MSGMERGE@
PO4A_UPDATEPO = @PO4A_UPDATEPO@
PO4A_TRANSLATE = @PO4A_TRANSLATE@

# Tweaks to extracted texinfo catalog, and generated output.
FIXUP_TEXI_POT = @PERL@ $(auxdir)/fixup-texi-pot
FIXUP_TEXI_TRANS = @PERL@ $(auxdir)/fixup-texi-trans

target = help2man
preload = bindtextdomain

all: $(target) man info @extra_make_all@

install: all install_base @extra_make_install@

install_base:
	$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
	$(INSTALL_SCRIPT) $(target) $(DESTDIR)$(bindir)
	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1
	$(INSTALL_DATA) $$($(FIND_VPATH) $(target).1) $(DESTDIR)$(mandir)/man1
	$(MKINSTALLDIRS) $(DESTDIR)$(infodir)
	$(INSTALL_DATA) $$($(FIND_VPATH) $(target).info) \
	    $(DESTDIR)$(infodir)/$(target).info

	if test -f $(DESTDIR)$(infodir)/dir; \
	then \
	    $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) \
		$(DESTDIR)$(infodir)/$(target).info; \
	fi

install_preload: preload
	$(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir)
	$(INSTALL_PROGRAM) $(preload).so $(DESTDIR)$(pkglibdir)

install_l10n: msg_l10n man_l10n info_l10n
	set -e; \
	for lang in $(LINGUAS); \
	do \
	    $(MKINSTALLDIRS) $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
	    $(INSTALL_DATA) $$($(FIND_VPATH) po/$$lang.gmo) \
		$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(target).mo; \
	    $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/$$lang/man1; \
	    $(INSTALL_DATA) $$($(FIND_VPATH) $(target).$$lang.1) \
		$(DESTDIR)$(mandir)/$$lang/man1/$(target).1; \
	done; \
	for lang in $(LINGUAS_TEXI); \
	do \
	    $(MKINSTALLDIRS) $(DESTDIR)$(infodir); \
	    $(INSTALL_DATA) $$($(FIND_VPATH) $(target)-$$lang.info) \
		$(DESTDIR)$(infodir)/$(target)-$$lang.info; \
	    if test -f $(DESTDIR)$(infodir)/dir; \
	    then \
		$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) \
		    $(DESTDIR)$(infodir)/$(target)-$$lang.info; \
	    fi; \
	done

uninstall:
	if test -f $(DESTDIR)$(infodir)/dir; \
	then \
	    for file in $(DESTDIR)$(infodir)/$(target).info \
		$(DESTDIR)$(infodir)/$(target)-*.info; \
		test -f $$file || continue; \
		$(INSTALL_INFO) --delete --info-dir=$(DESTDIR)$(infodir) $$file; \
	    done; \
	fi
	rm -f $(DESTDIR)$(bindir)/$(target) \
	    $(DESTDIR)$(pkglibdir)/$(preload).so \
	    $(DESTDIR)$(mandir)/man1/$(target).1 \
	    $(DESTDIR)$(mandir)/*/man1/$(target).1 \
	    $(DESTDIR)$(localedir)/*/LC_MESSAGES/$(target).mo \
	    $(DESTDIR)$(infodir)/$(target).info
	    $(DESTDIR)$(infodir)/$(target)-*.info

clean:
	-rm -f $(target) $(target).h2m $(target).*.h2m $(preload).so *.tmp*
	-rm -rf localetmp

mostlyclean: clean
	rm -f $(target).dvi $(target).aux $(target).cp $(target).cps \
	    $(target).fn $(target).ky $(target).log $(target).pg $(target).toc \
	    $(target).tp $(target).vr po/*.po~ po-texi/*.po~ po-texi/*.pot~ \
	    configure~

distclean: mostlyclean
	-rm -rf config.cache config.log config.status Makefile autom4te.cache

realclean: distclean
	rm -f $(target)-*.texi $(target).info $(target)-*.info $(target).1 \
	    $(target).*.1 po/*.gmo

maintainer-clean: realclean
	rm -f $(srcdir)/configure

$(target): $(srcdir)/$(target).PL
	$(PERL) $? @extra_extract_args@

$(target).h2m: $(srcdir)/$(target).h2m.PL
	$(PERL) $?

preload: $(preload).so
$(preload).so: $(srcdir)/$(preload).c
	$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ -fPIC -shared $? $(LIBS)

man: $(target).1
$(target).1: $(srcdir)/$(target).PL $(srcdir)/$(target).h2m.PL
	$(MAKE) $(target) $(target).h2m
	./$(target) --include=$(target).h2m --output=$@ ./$(target)

msg_l10n: $(addprefix po/,$(addsuffix .gmo,$(LINGUAS)))
po/%.gmo: $(srcdir)/po/%.po
	test -d po || mkdir po
	$(MSGFMT) -o $@ $?

localetmp/%/LC_MESSAGES/$(target).mo: po/%.gmo
	lang=$(patsubst localetmp/%/LC_MESSAGES/$(target).mo,%,$@); \
	$(MKINSTALLDIRS) localetmp/$$lang/LC_MESSAGES && \
	$(INSTALL_DATA) po/$$lang.gmo localetmp/$$lang/LC_MESSAGES/$(target).mo

man_l10n: $(addprefix $(target).,$(addsuffix .1,$(LINGUAS)))
$(target).%.1: $(srcdir)/$(target).PL $(srcdir)/$(target).h2m.PL \
    $(srcdir)/po/%.po
	lang=$(patsubst $(target).%.1,%,$@); \
	$(MAKE) $(target) $(preload).so \
	    localetmp/$$lang/LC_MESSAGES/$(target).mo $(target).$$lang.h2m; \
	LD_PRELOAD=./$(preload).so LOCALEDIR=localetmp TEXTDOMAIN=help2man \
	    ./$(target) --include=$$($(FIND_VPATH) $(target).$$lang.h2m) \
		--output=$@ ./$(target)

$(target).%.h2m: $(srcdir)/$(target).h2m.PL $(srcdir)/po/%.po
	set -e; \
	lang=$(patsubst $(target).%.h2m,%,$@); \
	locale=$$($(LOOKUP_LOCALE) $$lang $(srcdir)/locales); \
	$(MAKE) localetmp/$$lang/LC_MESSAGES/$(target).mo; \
	$(PERL) $(srcdir)/$(target).h2m.PL --locale="$$locale" \
	    --message-dir=localetmp --output=$@

info: $(target).info
$(target).info: $(srcdir)/$(target).texi
	$(MAKEINFO) $? -o $@

info_l10n: $(addprefix $(target)-,$(addsuffix .info,$(LINGUAS_TEXI)))
$(target)-%.info: $(target)-%.texi
	set -e; \
	lang=$(patsubst $(target)-%.info,%,$@); \
	locale=$$($(LOOKUP_LOCALE) $$lang $(srcdir)/locales); \
	$(MAKEINFO) --output=$@.tmp --document-language="$$locale" $?
	$(FIXUP_TEXI_TRANS) -o $@ $@.tmp
	rm -f $@.tmp

$(target)-%.texi: $(srcdir)/po-texi/%.po $(srcdir)/help2man.texi
	$(PO4A_TRANSLATE) -f texinfo -m $(srcdir)/help2man.texi \
	    -p $(filter %.po,$^) -l $@ -k 60

dvi: $(target).dvi
$(target).dvi: $(srcdir)/$(target).texi
	$(TEXI2DVI) $?

Makefile: $(srcdir)/Makefile.in
	./config.status

update-po: $(srcdir)/po/$(target).pot $(srcdir)/po-texi/$(target)-texi.pot
	set -e; \
	for po in $(srcdir)/po/*.po; \
	do \
	    echo -n "Updating $$po "; \
	    $(MSGMERGE) -U $$po $(srcdir)/po/$(target).pot; \
	done; \
	for po in $(srcdir)/po-texi/*.po; \
	do \
	    echo -n "Updating $$po "; \
	    $(MSGMERGE) -U $$po $(srcdir)/po-texi/$(target)-texi.pot; \
	done

$(srcdir)/po/$(target).pot: $(srcdir)/$(target).PL $(srcdir)/$(target).h2m.PL
	$(MAKE) $(target)
	$(XGETTEXT) -L Perl -k_ -kN_ -cTranslators: \
	    --msgid-bugs-address="Brendan O'Dea <bug-help2man@gnu.org>" -o $@ \
	    $(target) $(srcdir)/$(target).h2m.PL

$(srcdir)/po-texi/$(target)-texi.pot: $(srcdir)/$(target).texi
	$(PO4A_UPDATEPO) -f texinfo \
	    --msgid-bugs-address="Brendan O'Dea <bug-help2man@gnu.org>" \
	    -p $@.tmp -m $?
	$(FIXUP_TEXI_POT) -o $@ $@.tmp
	rm -f $@.tmp

.PHONY: all clean distclean dvi info info_l10n install install_base \
    install_l10n install_preload maintainer-clean man man_l10n mostlyclean \
    msg_l10n preload realclean uninstall update-po

.SUFFIXES: