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
|
POD2MAN=pod2man --center "Debian PostgreSQL infrastructure" -r "Debian"
POD1PROGS = pg_conftool.1 \
pg_createcluster.1 \
pg_ctlcluster.1 \
pg_dropcluster.1 \
pg_lsclusters.1 \
pg_upgradecluster.1 \
pg_wrapper.1
POD1PROGS_POD = pg_buildext.1 \
pg_virtualenv.1
POD8PROGS = pg_updatedicts.8
all: man
man: $(POD1PROGS) $(POD1PROGS_POD) $(POD8PROGS)
%.1: %.pod
$(POD2MAN) --quotes=none --section 1 $< $@
%.1: %
$(POD2MAN) --quotes=none --section 1 $< $@
%.8: %
$(POD2MAN) --quotes=none --section 8 $< $@
clean:
rm -f *.1 *.8
|