summaryrefslogtreecommitdiff
path: root/cpp/docs/man/Makefile.am
blob: efc690050cded67ee1f1b7b63673b0f5bc13a9b0 (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
if HAVE_HELP2MAN

dist_man_MANS = qpidd.1

man_aux = $(dist_man_MANS:.1=.x) 
EXTRA_DIST = $(man_aux) 
DISTCLEANFILES = $(dist_man_MANS)

dist-hook: $(man_aux)

qpidd.1: $(srcdir)/qpidd.x $(top_builddir)/src/qpidd

# Depend on configure.ac to get version number changes.
$(dist_man_MANS): $(top_srcdir)/configure.ac

SUFFIXES = .x .1
.x.1:
	@rm -f $@
	@echo "Updating man page $@"
	$(HELP2MAN) --no-info --include=$(srcdir)/$*.x --output=$@-t ../../src/$*
	@chmod a-w $@-t
	@mv $@-t $@

CLEANFILES=qpidd.1

endif