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.25 by root, Mon Jan 2 19:36:07 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines