ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/doc/Makefile.maint
Revision: 1.10
Committed: Sat Jan 22 17:39:07 2005 UTC (19 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.9: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 # This -*- Makefile -*- uses features of GNU make.
2 # It is included via GNUmakefile.
3
4 # The following one line summaries were extracted from the
5 # original man pages using this bit of sh code:
6 # for i in *.1; do echo "$i: "|tr -d '\012'; \
7 # grep -A1 SH.NAME $i|sed '/SH NAME/d;s/^[^ ][^ ]* .- //'; done
8
9 include Makefile.summ
10
11 # Depend on configure.in to get version number changes.
12 $(dyn_MANS): $(top_srcdir)/configure.in
13
14 # Depend on the source file containing the --help text.
15 # Filter out irregular cases.
16 regular-men = $(filter-out $(irregular-men),$(dyn_MANS))
17 $(regular-men): %.8: $(top_srcdir)/src/%.c
18
19 executable = $(patsubst %/install,%/ginstall, ../src/$(basename $@))
20
21 %.5: %.5.pod Makefile.maint
22 pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s5 -c "GNU Virtual Private Ethernet" $< >$@
23
24 %.7: %.7.pod Makefile.maint
25 pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s7 -c "GNU Virtual Private Ethernet" $< >$@
26
27 %.8: %.8.pod Makefile.maint
28 pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s8 -c "GNU Virtual Private Ethernet" $< >$@
29
30 gvpe.texi: gvpe.texi.pod
31 ./pod2texi <gvpe.texi.pod >gvpe.texi
32
33 ../README: gvpe.5.pod
34 pod2text -q\\\" -a gvpe.5.pod >../README
35