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.14 by root, Sat Aug 14 03:00:32 2004 UTC vs.
Revision 1.43 by root, Sun Jun 24 22:12:18 2007 UTC

1# doc/Makefile.in -*- Makefile -*- 1# doc/Makefile.in -*- Makefile -*-
2# $Id: Makefile.in,v 1.14 2004/08/14 03:00:32 root Exp $ 2
3@MCOMMON@ 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
4 22
5srcdir = @srcdir@ 23srcdir = @srcdir@
6VPATH = @srcdir@ 24VPATH = @srcdir@
7.PATH: @srcdir@
8
9basedir = ..
10thisdir = doc
11 25
12first_rule: all 26first_rule: all
13dummy: 27dummy:
14 28
15DIST_ETC = etc/rxvt.termcap etc/rxvt.terminfo etc/XTerm.ad
16DIST_POD = rxvt.1.pod rxvt.7.pod
17DIST_MENU = menu/menu menu/example.menu menu/rxvt.menu menu/rxvt.zh-menu\
18 menu/terminal.menu menu/jedmenu.sl
19DIST = Makefile.in README.menu README.xvt BUGS FAQ TODO\
20 changes.txt xterm.seq LSM.in \
21 rxvt.1.man rxvt.7.man rxvt.1.html rxvt.7.html rxvt.1.txt rxvt.7.txt
22
23#------------------------------------------------------------------------- 29#-------------------------------------------------------------------------
24 30
31SEDREPLACE = -e 's%@@RXVT_VERSION@@%$(VERSION)%g;' \
32 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;' \
33 -e 's%@@RXVT_DATE@@%$(DATE)%g;' \
34 -e 's%@@RXVT_LIBDIR@@%$(libdir)%g;' \
35 -e 's%@@URXVT_NAME@@%urxvt%g;'
36
25all: 37all:
38 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)/rxvtd.1.man.in >rxvtd.1.man
41 sed $(SEDREPLACE) < $(srcdir)/rxvt.7.man.in >rxvt.7.man
42@IF_PERL@ sed $(SEDREPLACE) < $(srcdir)/rxvtperl.3.man.in >rxvtperl.3.man
26 43
27SEDREPLACE = -e 's%@@RXVT_VERSION@@%$(VERSION)%g;'\ 44rxvtperl.3.pod: ../src/urxvt.pm
28 -e 's%@@RXVT_LSMDATE@@%$(LSMDATE)%g;'\ 45 cp $< $@
29 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;'\
30 -e 's%@@RXVT_DATE@@%$(DATE)%g;'\
31 -e 's%@@RXVT_MAINTEMAIL@@%$(MAINTEMAIL)%g;'\
32 -e 's%@@RXVT_MAINT@@%$(MAINT)%g;'\
33 -e 's%@@RXVT_WEBPAGE@@%$(WEBPAGE)%g;'\
34 -e 's%@@RXVT_WEBMAINTEMAIL@@%$(WEBMAINTEMAIL)%g;'\
35 -e 's%@@RXVT_WEBMAINT@@%$(WEBMAINT)%g;'
36 46
37rxvt.1.man: rxvt.1.pod 47%.tbl: %.pod
38 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2man -n rxvt -qnone -s1 -c "RXVT-UNICODE" >$@ 48 $(srcdir)/podtbl <$< >$@
39 49
40rxvt.7.man: rxvt.7.pod 50%.1.man.in: %.1.tbl
41 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2man -n rxvt -qnone -s7 -c "RXVT-UNICODE" >$@ 51 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s1 -c "RXVT-UNICODE" <$< >$@
42 52
43rxvt.1.html: rxvt.1.pod 53%.3.man.in: %.3.tbl
44 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2html >$@ 54 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s3 -c "RXVT-UNICODE" <$< >$@
45 55
46rxvt.7.html: rxvt.7.pod 56%.7.man.in: %.7.tbl
47 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2html >$@ 57 pod2man -n @@RXVT_NAME@@ -r"$(VERSION)" -q\" -s7 -c "RXVT-UNICODE" <$< >$@
48 58
49rxvt.1.txt: rxvt.1.pod 59%.html: %.tbl
50 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2text >$@ 60 sed $(SEDREPLACE) <$< | pod2xhtml --css http://res.tst.eu/pod.css >$@
51 61
52rxvt.7.txt: rxvt.7.pod 62%.txt: %.tbl
53 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2text >$@ 63 sed $(SEDREPLACE) <$< | pod2text >$@
54 64
55../README.configure: rxvt.7.pod 65../README.configure: rxvt.7.tbl
56 $(SED) $(SEDREPLACE) < $< | ./podtbl | podselect -section "CONFIGURE OPTIONS" | pod2text >$@ 66 sed $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@
67
68../README.FAQ: rxvt.7.tbl
69 sed $(SEDREPLACE) <$< | podselect -section "RXVT-UNICODE\/URXVT FREQUENTLY ASKED QUESTIONS" | pod2text >$@
57 70
58tags allbin: 71tags allbin:
59 72
60alldoc: $(basedir)/$(VERNAME).lsm rxvt.1.man rxvt.7.man rxvt.1.html rxvt.7.html rxvt.1.txt rxvt.7.txt ../README.configure 73alldoc: rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in rxvtperl.3.man.in \
61 74 rxvt.1.txt rxvt.7.txt rxvtc.1.txt rxvtd.1.txt rxvtperl.3.txt \
62$(basedir)/$(VERNAME).lsm: LSM.in $(srcdir)/../autoconf/Make.common.in 75 rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html rxvtperl.3.html \
63 $(SED) $(SEDREPLACE) < $(srcdir)/LSM.in > $@ 76 ../README.configure ../README.FAQ
77 infocmp -C rxvt-unicode >$(srcdir)/etc/rxvt-unicode.termcap
64 78
65clean: 79clean:
66 $(RMF) *~ 80 rm -f *~
81 rm -f rxvt.1.man rxvt.7.man rxvtc.1.man rxvtd.1.man rxvtperl.3.man
67 82
83distclean: clean
84 rm -f Makefile
85
68realclean: clean 86realclean: distclean
69 $(RMF) tags rxvt.1.man rxvt.7.man rxvt.1.html rxvt.7.htmlrxvt.1.txt rxvt.7.txt 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
70 92
71cleandir: realclean 93cleandir: realclean
72 94
73distclean:
74
75install: 95install:
76 $(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)
77 $(INSTALL) -d $(DESTDIR)$(man7dir) 100 $(INSTALL) -d $(DESTDIR)$(man7dir)
78 $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext)
79 $(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)
80 $(INSTALL_DATA) rxvtc.1 $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext) 103@IF_PERL@ $(INSTALL_DATA) rxvtperl.3.man $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
81 $(INSTALL_DATA) rxvtc.1 $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext) 104 if test -x "@TIC@"; then if test -n "@TIC@"; then @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo; fi; fi
82
83uninstall:
84 -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) )
85 105
86distdepend: alldoc 106distdepend: alldoc
87 107
88# ------------------------------------------------------------------------ 108# ------------------------------------------------------------------------
89# DO NOT DELETE: ugly dependency list follows 109# DO NOT DELETE: ugly dependency list follows

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines