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.26 by ayin, Mon Jan 16 17:18:01 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines