ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/Makefile.in
(Generate patch)

Comparing rxvt-unicode/doc/Makefile.in (file contents):
Revision 1.43 by root, Sun Jun 24 22:12:18 2007 UTC vs.
Revision 1.62 by sf-exg, Tue Dec 27 08:34:18 2022 UTC

1# doc/Makefile.in -*- Makefile -*- 1# doc/Makefile.in -*- Makefile -*-
2 2
3DATE=@DATE@ 3DATE = @DATE@
4VERSION=@VERSION@ 4VERSION = @VERSION@
5RXVTNAME=@RXVTNAME@ 5RXVTNAME = @RXVTNAME@
6SHELL = /bin/sh 6SHELL = /bin/sh
7prefix = @prefix@ 7prefix = @prefix@
8exec_prefix = @exec_prefix@ 8exec_prefix = @exec_prefix@
9bindir = @bindir@ 9bindir = @bindir@
10libdir = @libdir@ 10libdir = @libdir@
11includedir = @includedir@
12man1dir = @mandir@/man1 11man1dir = @mandir@/man1
13man1ext = 1 12man1ext = 1
14man3dir = @mandir@/man3 13man3dir = @mandir@/man3
15man3ext = 3 14man3ext = 3
16man7dir = @mandir@/man7 15man7dir = @mandir@/man7
18PERL = @PERL@ 17PERL = @PERL@
19INSTALL = @INSTALL@ 18INSTALL = @INSTALL@
20INSTALL_PROGRAM = @INSTALL@ -m 755 19INSTALL_PROGRAM = @INSTALL@ -m 755
21INSTALL_DATA = @INSTALL@ -m 644 20INSTALL_DATA = @INSTALL@ -m 644
22 21
23srcdir = @srcdir@ 22srcdir = @srcdir@
24VPATH = @srcdir@ 23VPATH = @srcdir@
25 24
26first_rule: all 25first_rule: all
27dummy: 26dummy:
28 27
29#------------------------------------------------------------------------- 28#-------------------------------------------------------------------------
32 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;' \ 31 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;' \
33 -e 's%@@RXVT_DATE@@%$(DATE)%g;' \ 32 -e 's%@@RXVT_DATE@@%$(DATE)%g;' \
34 -e 's%@@RXVT_LIBDIR@@%$(libdir)%g;' \ 33 -e 's%@@RXVT_LIBDIR@@%$(libdir)%g;' \
35 -e 's%@@URXVT_NAME@@%urxvt%g;' 34 -e 's%@@URXVT_NAME@@%urxvt%g;'
36 35
36POD2MAN = pod2man -n @@RXVT_NAME@@ -r @@RXVT_VERSION@@ -q\" -c "RXVT-UNICODE"
37
37all: 38all:
38 sed $(SEDREPLACE) < $(srcdir)/rxvt.1.man.in >rxvt.1.man 39 sed $(SEDREPLACE) < $(srcdir)/rxvt.1.man.in >rxvt.1.man
39 sed $(SEDREPLACE) < $(srcdir)/rxvtc.1.man.in >rxvtc.1.man 40 sed $(SEDREPLACE) < $(srcdir)/rxvtc.1.man.in >rxvtc.1.man
40 sed $(SEDREPLACE) < $(srcdir)/rxvtd.1.man.in >rxvtd.1.man 41 sed $(SEDREPLACE) < $(srcdir)/rxvtd.1.man.in >rxvtd.1.man
41 sed $(SEDREPLACE) < $(srcdir)/rxvt.7.man.in >rxvt.7.man 42 sed $(SEDREPLACE) < $(srcdir)/rxvt.7.man.in >rxvt.7.man
42@IF_PERL@ sed $(SEDREPLACE) < $(srcdir)/rxvtperl.3.man.in >rxvtperl.3.man 43 sed $(SEDREPLACE) < $(srcdir)/rclock.1.man.in >rclock.1.man
43 44
44rxvtperl.3.pod: ../src/urxvt.pm 45.INTERMEDIATE: rxvt.7.tbl
45 cp $< $@
46 46
47%.tbl: %.pod 47%.tbl: %.pod
48 $(srcdir)/podtbl <$< >$@ 48 $(srcdir)/podtbl <$< >$@
49 49
50%.1.man.in: %.1.tbl 50%.1.man.in: %.1.tbl
51 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s1 -c "RXVT-UNICODE" <$< >$@ 51 $(POD2MAN) -s1 <$< >$@
52 52
53%.3.man.in: %.3.tbl 53%.3.man.in: %.3.tbl
54 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s3 -c "RXVT-UNICODE" <$< >$@ 54 $(POD2MAN) -s3 <$< >$@
55 55
56%.7.man.in: %.7.tbl 56%.7.man.in: %.7.tbl
57 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s7 -c "RXVT-UNICODE" <$< >$@ 57 $(POD2MAN) -s7 <$< >$@
58 58
59%.html: %.tbl 59%.html: %.tbl
60 sed $(SEDREPLACE) <$< | pod2xhtml --css http://res.tst.eu/pod.css >$@ 60 sed $(SEDREPLACE) <$< | pod2xhtml --css http://res.tst.eu/pod.css >$@
61 61
62%.txt: %.tbl 62%.txt: %.tbl
66 sed $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@ 66 sed $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@
67 67
68../README.FAQ: rxvt.7.tbl 68../README.FAQ: rxvt.7.tbl
69 sed $(SEDREPLACE) <$< | podselect -section "RXVT-UNICODE\/URXVT FREQUENTLY ASKED QUESTIONS" | pod2text >$@ 69 sed $(SEDREPLACE) <$< | podselect -section "RXVT-UNICODE\/URXVT FREQUENTLY ASKED QUESTIONS" | pod2text >$@
70 70
71$(srcdir)/etc/rxvt-unicode.termcap: $(srcdir)/etc/rxvt-unicode.terminfo
72 tic -C $< >$@
73
71tags allbin: 74tags allbin:
72 75
73alldoc: rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in rxvtperl.3.man.in \ 76alldoc: rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in rclock.1.man.in \
74 rxvt.1.txt rxvt.7.txt rxvtc.1.txt rxvtd.1.txt rxvtperl.3.txt \
75 rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html rxvtperl.3.html \
76 ../README.configure ../README.FAQ 77 ../README.configure ../README.FAQ \
77 infocmp -C rxvt-unicode >$(srcdir)/etc/rxvt-unicode.termcap 78 $(srcdir)/etc/rxvt-unicode.termcap
79
80alldocclean:
81 rm -f rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in
82 rm -f ../README.configure ../README.FAQ
83 rm -f $(srcdir)/etc/rxvt-unicode.termcap
78 84
79clean: 85clean:
80 rm -f *~
81 rm -f rxvt.1.man rxvt.7.man rxvtc.1.man rxvtd.1.man rxvtperl.3.man 86 rm -f rxvt.1.man rxvt.7.man rxvtc.1.man rxvtd.1.man rclock.1.man
82 87
83distclean: clean 88distclean: clean
84 rm -f Makefile 89 rm -f Makefile
85 90
86realclean: distclean 91realclean: distclean alldocclean
87 rm -f rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in rxvtperl.3.man.in
88 rm -f rxvt.1.txt rxvt.7.txt rxvtc.1.txt rxvtd.1.txt rxvtperl.3.txt
89 rm -f rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html rxvtperl.3.html
90 rm -f ../README.configure ../README.FAQ
91 rm -f $(srcdir)/etc/rxvt-unicode.termcap
92 92
93cleandir: realclean 93cleandir: realclean
94 94
95install: 95install: all
96 $(INSTALL) -d $(DESTDIR)$(man1dir) 96 $(INSTALL) -d $(DESTDIR)$(man1dir)
97 $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext)
98 $(INSTALL_DATA) rxvtc.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext)
99 $(INSTALL_DATA) rxvtd.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext)
100 $(INSTALL) -d $(DESTDIR)$(man7dir) 97 $(INSTALL) -d $(DESTDIR)$(man7dir)
98 $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext)
99 $(INSTALL_DATA) rxvtc.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext)
100 $(INSTALL_DATA) rxvtd.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext)
101 $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext) 101 $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext)
102@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir) 102 $(INSTALL_DATA) rclock.1.man $(DESTDIR)$(man1dir)/urclock.$(man1ext)
103@IF_PERL@ $(INSTALL_DATA) rxvtperl.3.man $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext) 103 @TIC@ -x $(srcdir)/etc/rxvt-unicode.terminfo || \
104 if test -x "@TIC@"; then if test -n "@TIC@"; then @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo; fi; fi 104 @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo
105 105
106distdepend: alldoc 106distdepend: alldoc
107 107
108# ------------------------------------------------------------------------
109# DO NOT DELETE: ugly dependency list follows

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines