doc: regenerate INSTALL
[gnulib.git] / doc / Makefile
1 # Makefile for gnulib doc.
2 # Copyright (C) 2004, 2006-2011 Free Software Foundation, Inc.
3 #
4 # Copying and distribution of this file, with or without modification,
5 # are permitted in any medium without royalty provided the copyright
6 # notice and this notice are preserved.
7
8 doc = gnulib
9
10 MAKEINFO = env LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo
11 TEXI2HTML = $(MAKEINFO) --no-split --reference-limit=2000 --html
12
13 %.info: %.texi
14         LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo --no-split --reference-limit=2000 $<
15
16 %.html: %.texi
17         $(TEXI2HTML) -o $@ $<
18
19 %.dvi: %.texi
20         texi2dvi $< || { if texi2dvi $< 2>/dev/null | grep 'TeX capacity exceeded, sorry \[save size=' > /dev/null; then echo '*** You must increase the save_size in your texmf.cnf file, often located under /etc/texmf/.'; fi; exit 1; }
21
22 %.pdf: %.texi
23         texi2pdf $< || { if texi2pdf $< 2>/dev/null | grep 'TeX capacity exceeded, sorry \[save size=' > /dev/null; then echo '*** You must increase the save_size in your texmf.cnf file, often located under /etc/texmf/.'; fi; exit 1; }
24
25 all: info html dvi
26 info: $(doc).info
27 html: $(doc).html
28 dvi: $(doc).dvi
29 pdf: $(doc).pdf
30
31 INSTALL_PRELUDE = echo '@firstparagraphindent insert'
32
33 # INSTALL file with old ASCII quotation marks (looks ugly on modern machines).
34 INSTALL: install.texi
35         $(INSTALL_PRELUDE) | cat - $< > tmp.texi
36         $(MAKEINFO) --plaintext --no-validate tmp.texi > $@
37         rm -f tmp.texi
38
39 # INSTALL file with ISO 646 or ISO 8859 quotation marks.
40 INSTALL.ISO: install.texi
41         $(INSTALL_PRELUDE) | cat - $< > tmpi.texi
42         $(MAKEINFO) --plaintext --no-validate tmpi.texi \
43           | sed -e "s/\`\([^']*\)'/'\1'/g" > $@
44         rm -f tmpi.texi
45
46 # INSTALL file wit ISO 10646 (Unicode) quotation marks.
47 INSTALL.UTF-8: install.texi
48         $(INSTALL_PRELUDE) | cat - $< > tmpu.texi
49         $(MAKEINFO) --plaintext --no-validate tmpu.texi \
50           | sed -e "s/\`\([^']*\)'/‘\1’/g" > $@
51         rm -f tmpu.texi
52
53 GNULIB_TEXI_FILES = $(filter-out maintain.texi make-stds.texi standards.texi,$(wildcard *.texi)) $(wildcard posix-headers/*.texi) $(wildcard posix-functions/*.texi) $(wildcard glibc-headers/*.texi) $(wildcard glibc-functions/*.texi)
54
55 # Date of last update. Requires GNU date.
56 updated-stamp: $(GNULIB_TEXI_FILES)
57         date -u -r `ls -t $^ | sed 1q` +"@set UPDATED %F %T" > $@
58
59 # Dependencies. Search for @include to find them all.
60 gnulib.info gnulib.html gnulib.dvi gnulib.pdf: $(GNULIB_TEXI_FILES) updated-stamp
61 standards.info standards.html standards.dvi: standards.texi make-stds.texi fdl.texi
62
63 mostlyclean:
64         rm -f *.aux *.cp *.cps *.fn *.ky *.log *.pg *.toc *.tp *.vr *.vrs
65         rm -f updated-stamp
66
67 clean: mostlyclean
68         rm -f *.info *.html *.dvi *.ps *.pdf