ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/Makefile.in
Revision: 1.21
Committed: Mon Feb 14 10:44:50 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-5_1
Changes since 1.20: +2 -20 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 # doc/Makefile.in -*- Makefile -*-
2     @MCOMMON@
3    
4     srcdir = @srcdir@
5     VPATH = @srcdir@
6     .PATH: @srcdir@
7    
8     basedir = ..
9     thisdir = doc
10    
11     first_rule: all
12     dummy:
13    
14     #-------------------------------------------------------------------------
15    
16 root 1.14 all:
17    
18     SEDREPLACE = -e 's%@@RXVT_VERSION@@%$(VERSION)%g;'\
19     -e 's%@@RXVT_NAME@@%$(RXVTNAME)%g;'\
20 root 1.21 -e 's%@@RXVT_DATE@@%$(DATE)%g;'
21 root 1.14
22 root 1.19 %.tbl: %.pod
23     ./podtbl <$< >$@
24 root 1.14
25 root 1.19 %.1.man.in: %.1.tbl
26 root 1.20 pod2man -n rxvt -r"$(VERSION)" -q\" -s1 -c "RXVT-UNICODE" <$< >$@
27 root 1.14
28 root 1.19 %.7.man.in: %.7.tbl
29 root 1.20 pod2man -n rxvt -r"$(VERSION)" -q\" -s7 -c "RXVT-UNICODE" <$< >$@
30 root 1.14
31 root 1.19 %.html: %.tbl
32     $(SED) $(SEDREPLACE) <$< | pod2html >$@
33 root 1.14
34 root 1.19 %.txt: %.tbl
35     $(SED) $(SEDREPLACE) <$< | pod2text >$@
36 pcg 1.1
37 root 1.19 ../README.configure: rxvt.7.tbl
38     $(SED) $(SEDREPLACE) <$< | podselect -section "CONFIGURE OPTIONS" | pod2text >$@
39 pcg 1.1
40 root 1.19 ../README.FAQ: rxvt.7.tbl
41     $(SED) $(SEDREPLACE) <$< | podselect -section "FREQUENTLY ASKED QUESTIONS" | pod2text >$@
42 pcg 1.1
43     tags allbin:
44    
45 root 1.21 alldoc: rxvt.1.man.in rxvt.7.man.in rxvt.1.html rxvt.7.html rxvt.1.txt rxvt.7.txt ../README.configure ../README.FAQ
46 pcg 1.1
47     clean:
48 root 1.14 $(RMF) *~
49 pcg 1.1
50     realclean: clean
51 root 1.19 $(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
52 pcg 1.1
53     cleandir: realclean
54    
55     distclean:
56    
57 root 1.14 install:
58     $(INSTALL) -d $(DESTDIR)$(man1dir)
59     $(INSTALL) -d $(DESTDIR)$(man7dir)
60 root 1.19 $(SED) $(SEDREPLACE) < rxvt.1.man.in >rxvt.1.man
61 root 1.14 $(INSTALL_DATA) rxvt.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME).$(man1ext)
62 root 1.19 $(SED) $(SEDREPLACE) < rxvt.7.man.in >rxvt.7.man
63 root 1.14 $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext)
64     $(INSTALL_DATA) rxvtc.1 $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext)
65     $(INSTALL_DATA) rxvtc.1 $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext)
66 root 1.16 if test -x "@TIC@"; then if test -n "@TIC@"; then @TIC@ etc/rxvt-unicode.terminfo; fi; fi
67 pcg 1.1
68     uninstall:
69     -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) )
70    
71     distdepend: alldoc
72    
73     # ------------------------------------------------------------------------
74     # DO NOT DELETE: ugly dependency list follows