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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines