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.28 by root, Wed Jan 18 08:33:34 2006 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
18RM = @RM@
19RMF = @RM@ -f
20CP = @CP@
21LN = @LN@
22SED = @SED@
23ECHO = @ECHO@
24PERL = @PERL@
25INSTALL = @INSTALL@
26INSTALL_PROGRAM = @INSTALL@ -m 755
27INSTALL_DATA = @INSTALL@ -m 644
4 28
5srcdir = @srcdir@ 29srcdir = @srcdir@
6VPATH = @srcdir@ 30VPATH = @srcdir@
7.PATH: @srcdir@ 31.PATH: @srcdir@
8 32
10thisdir = doc 34thisdir = doc
11 35
12first_rule: all 36first_rule: all
13dummy: 37dummy:
14 38
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#------------------------------------------------------------------------- 39#-------------------------------------------------------------------------
24 40
25all: 41all:
26 42
27SEDREPLACE = -e 's%@@RXVT_VERSION@@%$(VERSION)%g;'\ 43SEDREPLACE = -e 's%@@RXVT_VERSION@@%$(VERSION)%g;' \
28 -e 's%@@RXVT_LSMDATE@@%$(LSMDATE)%g;'\
29 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;'\ 44 -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;' \
30 -e 's%@@RXVT_DATE@@%$(DATE)%g;'\ 45 -e 's%@@RXVT_DATE@@%$(DATE)%g;' \
31 -e 's%@@RXVT_MAINTEMAIL@@%$(MAINTEMAIL)%g;'\ 46 -e 's%@@RXVT_LIBDIR@@%$(libdir)%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 47
37rxvt.1.man: rxvt.1.pod 48rxvtperl.3.pod: ../src/urxvt.pm
38 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2man -n rxvt -qnone -s1 -c "RXVT-UNICODE" >$@ 49 $(CP) $< $@
39 50
40rxvt.7.man: rxvt.7.pod 51%.tbl: %.pod
41 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2man -n rxvt -qnone -s7 -c "RXVT-UNICODE" >$@ 52 ./podtbl <$< >$@
42 53
43rxvt.1.html: rxvt.1.pod 54%.1.man.in: %.1.tbl
44 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2html >$@ 55 pod2man -n rxvt -r"$(VERSION)" -q\" -s1 -c "RXVT-UNICODE" <$< >$@
45 56
46rxvt.7.html: rxvt.7.pod 57%.3.man.in: %.3.tbl
47 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2html >$@ 58 pod2man -n rxvt -r"$(VERSION)" -q\" -s3 -c "RXVT-UNICODE" <$< >$@
48 59
49rxvt.1.txt: rxvt.1.pod 60%.7.man.in: %.7.tbl
50 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2text >$@ 61 pod2man -n rxvt -r"$(VERSION)" -q\" -s7 -c "RXVT-UNICODE" <$< >$@
51 62
52rxvt.7.txt: rxvt.7.pod 63%.html: %.tbl
53 $(SED) $(SEDREPLACE) < $< | ./podtbl | pod2text >$@ 64 $(SED) $(SEDREPLACE) <$< | pod2html >$@
54 65
66%.txt: %.tbl
67 $(SED) $(SEDREPLACE) <$< | pod2text >$@
68
55../README.configure: rxvt.7.pod 69../README.configure: rxvt.7.tbl
56 $(SED) $(SEDREPLACE) < $< | ./podtbl | podselect -section "CONFIGURE OPTIONS" | pod2text >$@ 70 $(SED) $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@
71
72../README.FAQ: rxvt.7.tbl
73 $(SED) $(SEDREPLACE) <$< | podselect -section "FREQUENTLY ASKED QUESTIONS" | pod2text >$@
57 74
58tags allbin: 75tags allbin:
59 76
60alldoc: $(basedir)/$(VERNAME).lsm rxvt.1.man rxvt.7.man rxvt.1.html rxvt.7.html rxvt.1.txt rxvt.7.txt ../README.configure 77alldoc: rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in rxvtperl.3.man.in \
61 78 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 79 rxvt.1.html rxvt.7.html rxvtc.1.html rxvtd.1.html rxvtperl.3.html \
63 $(SED) $(SEDREPLACE) < $(srcdir)/LSM.in > $@ 80 ../README.configure ../README.FAQ
81 infocmp -C rxvt-unicode >etc/rxvt-unicode.termcap
64 82
65clean: 83clean:
66 $(RMF) *~ 84 $(RMF) *~
67 85
68realclean: clean 86realclean: clean
69 $(RMF) tags rxvt.1.man rxvt.7.man rxvt.1.html rxvt.7.htmlrxvt.1.txt rxvt.7.txt 87 $(RMF) tags ../README.configure ../README.FAQ
88 $(RMF) rxvt.1.man.in rxvt.7.man.in rxvtc.1.man.in rxvtd.1.man.in
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
70 92
71cleandir: realclean 93cleandir: realclean
72 94
73distclean: 95distclean:
74 96
75install: 97install:
76 $(INSTALL) -d $(DESTDIR)$(man1dir) 98 $(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 $(SED) $(SEDREPLACE) < rxvtc.1.man.in >rxvtc.1.man
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)
77 $(INSTALL) -d $(DESTDIR)$(man7dir) 105 $(INSTALL) -d $(DESTDIR)$(man7dir)
78 $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext) 106 $(SED) $(SEDREPLACE) < rxvt.7.man.in >rxvt.7.man
79 $(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)
109@IF_PERL@ $(SED) $(SEDREPLACE) < rxvtperl.3.man.in >rxvtperl.3.man
80 $(INSTALL_DATA) rxvtc.1 $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext) 110@IF_PERL@ $(INSTALL_DATA) rxvtperl.3.man $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
81 $(INSTALL_DATA) rxvtc.1 $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext) 111 if test -x "@TIC@"; then if test -n "@TIC@"; then @TIC@ etc/rxvt-unicode.terminfo; fi; fi
82 112
83uninstall: 113uninstall:
84 -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) ) 114 -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) )
85 115
86distdepend: alldoc 116distdepend: alldoc

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines