summaryrefslogtreecommitdiff
path: root/doc/Makefile.am
blob: fbaa59972a0bbd565ea7a716e80da953277af17b (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
## Process this file with automake to produce Makefile.in
# by Michal Trojnara 1998-2019

EXTRA_DIST = stunnel.pod.in stunnel.8.in stunnel.html.in en
EXTRA_DIST += stunnel.pl.pod.in stunnel.pl.8.in stunnel.pl.html.in pl

man_MANS = stunnel.8 stunnel.pl.8

docdir = $(datadir)/doc/stunnel
doc_DATA = stunnel.html stunnel.pl.html

CLEANFILES = $(man_MANS)
DISTCLEANFILES = $(doc_DATA)

SUFFIXES = .pod.in .8.in .html.in

.pod.in.8.in:
	pod2man -u -n stunnel -s 8 -r $(VERSION) \
		-c "stunnel TLS Proxy" -d `date +%Y.%m.%d` $< $@

.pod.in.html.in:
	pod2html --index --backlink --header \
		--title "stunnel TLS Proxy" --infile=$< --outfile=$@
	rm -f pod2htmd.tmp pod2htmi.tmp

edit = sed \
	-e 's|@bindir[@]|$(bindir)|g' \
	-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
	-e '\|^<link rev="made" href="|d'

$(man_MANS) $(doc_DATA): Makefile
	$(edit) '$(srcdir)/$@.in' >$@

stunnel.8: $(srcdir)/stunnel.8.in
stunnel.html: $(srcdir)/stunnel.html.in
stunnel.pl.8: $(srcdir)/stunnel.pl.8.in
stunnel.pl.html: $(srcdir)/stunnel.pl.html.in