File: Makefile.am

package info (click to toggle)
tinyproxy 1.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 912 kB
  • sloc: ansic: 6,361; sh: 359; perl: 351; makefile: 190; awk: 4
file content (25 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (3)
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
if HAVE_MANPAGE_INTEREST
MAN8_FILES  = \
	tinyproxy.txt
endif

M_SECTION=8
M_NAME=TINYPROXY

man_MANS = \
	$(MAN8_FILES:.txt=.8)

.txt.8:
if HAVE_POD2MAN
	$(AM_V_GEN) $(POD2MAN) --center="Tinyproxy manual" \
	--section=$(M_SECTION) --name=$(M_NAME) --release="Version @VERSION@" \
	$< > $@
else
	@echo "*** pod2man is required to regenerate $(@) ***"; exit 1;
endif

MAINTAINERCLEANFILES = \
	$(MAN8_FILES:.txt=.8)

EXTRA_DIST = \
	$(MAN8_FILES:.txt=.8)