ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/Makefile.in
Revision: 1.41
Committed: Wed Jun 13 11:30:42 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.40: +0 -1 lines
Log Message:
Remove unused variables.

File Contents

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