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.36 by ayin, Fri Jun 8 22:45:48 2007 UTC vs.
Revision 1.58 by sf-exg, Sat Sep 22 15:53:37 2012 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
17man7ext = 7 16man7ext = 7
18CP = @CP@
19LN = @LN@
20SED = @SED@
21ECHO = @ECHO@
22PERL = @PERL@ 17PERL = @PERL@
23INSTALL = @INSTALL@ 18INSTALL = @INSTALL@
24INSTALL_PROGRAM = @INSTALL@ -m 755 19INSTALL_PROGRAM = @INSTALL@ -m 755
25INSTALL_DATA = @INSTALL@ -m 644 20INSTALL_DATA = @INSTALL@ -m 644
26 21
27srcdir = @srcdir@ 22srcdir = @srcdir@
28VPATH = @srcdir@ 23VPATH = @srcdir@
29.PATH: @srcdir@
30
31basedir = ..
32thisdir = doc
33 24
34first_rule: all 25first_rule: all
35dummy: 26dummy:
36 27
37#------------------------------------------------------------------------- 28#-------------------------------------------------------------------------
40 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;' \ 31 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;' \
41 -e 's%@@RXVT_DATE@@%$(DATE)%g;' \ 32 -e 's%@@RXVT_DATE@@%$(DATE)%g;' \
42 -e 's%@@RXVT_LIBDIR@@%$(libdir)%g;' \ 33 -e 's%@@RXVT_LIBDIR@@%$(libdir)%g;' \
43 -e 's%@@URXVT_NAME@@%urxvt%g;' 34 -e 's%@@URXVT_NAME@@%urxvt%g;'
44 35
36POD2MAN = pod2man -n @@RXVT_NAME@@ -r @@RXVT_VERSION@@ -q\" -c "RXVT-UNICODE"
37
45all: 38all:
46 $(SED) $(SEDREPLACE) < $(srcdir)/rxvt.1.man.in >rxvt.1.man 39 sed $(SEDREPLACE) < $(srcdir)/rxvt.1.man.in >rxvt.1.man
47 $(SED) $(SEDREPLACE) < $(srcdir)/rxvtc.1.man.in >rxvtc.1.man 40 sed $(SEDREPLACE) < $(srcdir)/rxvtc.1.man.in >rxvtc.1.man
48 $(SED) $(SEDREPLACE) < $(srcdir)/rxvtd.1.man.in >rxvtd.1.man 41 sed $(SEDREPLACE) < $(srcdir)/rxvtd.1.man.in >rxvtd.1.man
49 $(SED) $(SEDREPLACE) < $(srcdir)/rxvt.7.man.in >rxvt.7.man 42 sed $(SEDREPLACE) < $(srcdir)/rxvt.7.man.in >rxvt.7.man
50@IF_PERL@ $(SED) $(SEDREPLACE) < $(srcdir)/rxvtperl.3.man.in >rxvtperl.3.man
51 43
52rxvtperl.3.pod: ../src/urxvt.pm 44.INTERMEDIATE: rxvt.7.tbl
53 $(CP) $< $@
54 45
55%.tbl: %.pod 46%.tbl: %.pod
56 $(srcdir)/podtbl <$< >$@ 47 $(srcdir)/podtbl <$< >$@
57 48
58%.1.man.in: %.1.tbl 49%.1.man.in: %.1.tbl
59 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s1 -c "RXVT-UNICODE" <$< >$@ 50 $(POD2MAN) -s1 <$< >$@
60 51
61%.3.man.in: %.3.tbl 52%.3.man.in: %.3.tbl
62 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s3 -c "RXVT-UNICODE" <$< >$@ 53 $(POD2MAN) -s3 <$< >$@
63 54
64%.7.man.in: %.7.tbl 55%.7.man.in: %.7.tbl
65 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s7 -c "RXVT-UNICODE" <$< >$@ 56 $(POD2MAN) -s7 <$< >$@
66 57
67%.html: %.tbl 58%.html: %.tbl
68 $(SED) $(SEDREPLACE) <$< | pod2html >$@ 59 sed $(SEDREPLACE) <$< | pod2xhtml --css http://res.tst.eu/pod.css >$@
69 60
70%.txt: %.tbl 61%.txt: %.tbl
71 $(SED) $(SEDREPLACE) <$< | pod2text >$@ 62 sed $(SEDREPLACE) <$< | pod2text >$@
72 63
73../README.configure: rxvt.7.tbl 64../README.configure: rxvt.7.tbl
74 $(SED) $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@ 65 sed $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@
75 66
76../README.FAQ: rxvt.7.tbl 67../README.FAQ: rxvt.7.tbl
77 $(SED) $(SEDREPLACE) <$< | podselect -section "RXVT-UNICODE\/URXVT FREQUENTLY ASKED QUESTIONS" | pod2text >$@ 68 sed $(SEDREPLACE) <$< | podselect -section "RXVT-UNICODE\/URXVT FREQUENTLY ASKED QUESTIONS" | pod2text >$@
69
70$(srcdir)/etc/rxvt-unicode.termcap: $(srcdir)/etc/rxvt-unicode.terminfo
71 tic -C $< >$@
78 72
79tags allbin: 73tags allbin:
80 74
81alldoc: rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in rxvtperl.3.man.in \ 75alldoc: rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in \
82 rxvt.1.txt rxvt.7.txt rxvtc.1.txt rxvtd.1.txt rxvtperl.3.txt \
83 rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html rxvtperl.3.html \
84 ../README.configure ../README.FAQ 76 ../README.configure ../README.FAQ \
85 infocmp -C rxvt-unicode >$(srcdir)/etc/rxvt-unicode.termcap 77 $(srcdir)/etc/rxvt-unicode.termcap
86 78
87clean: 79clean:
88 rm -f *~ 80 rm -f rxvt.1.man rxvt.7.man rxvtc.1.man rxvtd.1.man
89 81
82distclean: clean
83 rm -f Makefile
84
90realclean: clean 85realclean: distclean
91 rm -f tags ../README.configure ../README.FAQ
92 rm -f rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in 86 rm -f rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in
93 rm -f rxvt.1.man rxvt.7.man rxvtc.1.man rxvtd.1.man 87 rm -f ../README.configure ../README.FAQ
94 rm -f rxvt.1.txt rxvt.7.txt rxvtc.1.txt rxvtd.1.txt 88 rm -f $(srcdir)/etc/rxvt-unicode.termcap
95 rm -f rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html
96 89
97cleandir: realclean 90cleandir: realclean
98 91
99distclean:
100 rm -f Makefile
101
102install: 92install: all
103 $(INSTALL) -d $(DESTDIR)$(man1dir) 93 $(INSTALL) -d $(DESTDIR)$(man1dir)
94 $(INSTALL) -d $(DESTDIR)$(man7dir)
104 $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext) 95 $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext)
105 $(INSTALL_DATA) rxvtc.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext) 96 $(INSTALL_DATA) rxvtc.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext)
106 $(INSTALL_DATA) rxvtd.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext) 97 $(INSTALL_DATA) rxvtd.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext)
107 $(INSTALL) -d $(DESTDIR)$(man7dir)
108 $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext) 98 $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext)
109@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir) 99 @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo
110@IF_PERL@ $(INSTALL_DATA) rxvtperl.3.man $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
111 if test -x "@TIC@"; then if test -n "@TIC@"; then @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo; fi; fi
112 100
113distdepend: alldoc 101distdepend: alldoc
114 102
115# ------------------------------------------------------------------------
116# DO NOT DELETE: ugly dependency list follows

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines