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 |
# Depend on configure.in to get version number changes. |
10 |
$(dyn_MANS): $(top_srcdir)/configure.in |
11 |
|
12 |
# Depend on the source file containing the --help text. |
13 |
# Filter out irregular cases. |
14 |
regular-men = $(filter-out $(irregular-men),$(dyn_MANS)) |
15 |
$(regular-men): %.8: $(top_srcdir)/src/%.c |
16 |
|
17 |
executable = $(patsubst %/install,%/ginstall, ../src/$(basename $@)) |
18 |
|
19 |
%.5: %.5.pod Makefile.maint |
20 |
pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s5 -c "GNU Virtual Private Ethernet" $< >$@ |
21 |
|
22 |
%.7: %.7.pod Makefile.maint |
23 |
pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s7 -c "GNU Virtual Private Ethernet" $< >$@ |
24 |
|
25 |
%.8: %.8.pod Makefile.maint |
26 |
pod2man -n$(shell perl -e '$$ARGV[0] =~ s/\.\d$$//; print uc $$ARGV[0]' $@) -qnone -r$(VERSION) -s8 -c "GNU Virtual Private Ethernet" $< >$@ |
27 |
|
28 |
gvpe.texi: gvpe.texi.pod pod2texi |
29 |
./pod2texi <gvpe.texi.pod >gvpe.texi |
30 |
|
31 |
../README: gvpe.5.pod |
32 |
pod2text -q\\\" -a gvpe.5.pod >../README |
33 |
|