summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 572ecbe9795944c6ba956c3691ccea1b623cca44 (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
# Makefile for help2man

# Copyright (C) 2012, 2014 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@
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@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_INFO = @INSTALL_INFO@
MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
MSGFMT = @MSGFMT@
XGETTEXT = @XGETTEXT@
MSGMERGE = @MSGMERGE@
PO4A_UPDATEPO = @PO4A_UPDATEPO@
PO4A_TRANSLATE = @PO4A_TRANSLATE@

target = help2man
preload = bindtextdomain

# find file in vpath
vpath_file = $$($(PERL) -e 'print +(grep -f, map "$$_/$$ARGV[0]", \
    map +(length) ? $$_ : ".", split ":", $$ENV{VPATH} || ".")[0]' $(1))

all: $(target) man info @extra_make_all@

install: all install_base @extra_make_install@
install_dirs:
	$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
	$(MKINSTALLDIRS) $(DESTDIR)$(pkglibdir)
	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1
	$(MKINSTALLDIRS) $(DESTDIR)$(infodir)

install_base: install_dirs
	$(INSTALL_SCRIPT) $(target) $(DESTDIR)$(bindir)
	$(INSTALL_DATA) $(call vpath_file,$(target).1) $(DESTDIR)$(mandir)/man1
	$(INSTALL_DATA) $(call vpath_file,$(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: install_dirs preload
	$(INSTALL_PROGRAM) $(preload).so $(DESTDIR)$(pkglibdir)

install_l10n: install_dirs msg_l10n man_l10n info_l10n
	set -e; \
	for lang in $(LINGUAS); \
	do \
	    $(MKINSTALLDIRS) $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
	    $(INSTALL_DATA) $(call vpath_file,po/$$lang.gmo) \
		$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(target).mo; \
	    $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/$$lang/man1; \
	    $(INSTALL_DATA) $(call vpath_file,$(target).$$lang.1) \
		$(DESTDIR)$(mandir)/$$lang/man1/$(target).1; \
	done; \
	for lang in $(LINGUAS_TEXI); \
	do \
	    $(INSTALL_DATA) $(call vpath_file,$(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[0-9]*
	-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~

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) -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=$(call vpath_file,$(target).$$lang.h2m) \
		--output=$@ ./$(target)

$(target).%.h2m: $(srcdir)/$(target).h2m.PL $(srcdir)/po/%.po
	set -e; \
	lang=$(patsubst $(target).%.h2m,%,$@); \
	locale=$$(echo $$lang $$lang | \
	     sed -n "/^$$lang"'\s/{s/^\S\+\s\+//p; q}' $(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
	$(MAKEINFO) $? -o $@

$(target)-%.texi: $(srcdir)/po-texi/%.po $(srcdir)/help2man.texi
	set -e; \
	lang=$(patsubst $(target)-%.texi,%,$@); \
	po="$(srcdir)/po-texi/$$lang.po"; \
	grep -q '^msgstr "help2man-'$$lang': (help2man-'$$lang')"' $$po; \
	$(PO4A_TRANSLATE) -f texinfo -m $(srcdir)/help2man.texi -p $$po -l $@

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 $@ -m $?

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

.SUFFIXES: