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.25 by root, Mon Jan 2 19:36:07 2006 UTC vs.
Revision 1.47 by root, Sun Nov 18 03:29:17 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines