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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines