ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/doc/Makefile.maint
Revision: 1.8
Committed: Tue Apr 15 04:32:34 2003 UTC (21 years, 1 month ago) by pcg
Branch: MAIN
CVS Tags: poll-based-iom, VPE_1_2, VPE_1_4, VPE_1_6, VPE-1_6_1, VPE_1_0
Changes since 1.7: +3 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.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 pcg 1.2
21 pcg 1.5 %.5: %.5.pod Makefile.maint
22     pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s5 -c "Virtual Private Ethernet" $< >$@
23 pcg 1.2
24 pcg 1.8 %.7: %.7.pod Makefile.maint
25     pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s7 -c "Virtual Private Ethernet" $< >$@
26    
27 pcg 1.5 %.8: %.8.pod Makefile.maint
28     pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s8 -c "Virtual Private Ethernet" $< >$@
29 pcg 1.3
30 pcg 1.6 vpe.texi: vpe.texi.in
31     ./pod2texi <vpe.texi.in >vpe.texi
32    
33 pcg 1.7 ../README: vpe.5.pod
34     pod2text -q\\\" -a vpe.5.pod >../README
35 pcg 1.3