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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines