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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines