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.28 by root, Wed Jan 18 08:33:34 2006 UTC vs.
Revision 1.40 by ayin, Wed Jun 13 10:39:09 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines