Generate INSTALL file variants with prettier quotes.
[gnulib.git] / doc / Makefile
1 # Makefile for gnulib doc.
2 # Copyright (C) 2004, 2006-2008 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 %.html: %.texi
13         $(TEXI2HTML) -o $@ $<
14
15 %.info: %.texi
16         LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo --no-split --reference-limit=2000 $<
17
18 %.pdf: %.texi
19         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.'; fi; exit 1; }
20
21 all: info html dvi
22 info: $(doc).info
23 html: $(doc).html
24 dvi: $(doc).dvi
25 pdf: $(doc).pdf
26
27 INSTALL_PRELUDE = \
28   echo '@firstparagraphindent insert';
29
30 # INSTALL file with old ASCII quotation marks (looks ugly on modern machines).
31 INSTALL: install.texi
32         { $(INSTALL_PRELUDE) cat $<; } > tmp.texi
33         $(MAKEINFO) --plaintext --no-validate tmp.texi > $@
34         rm -f tmp.texi
35
36 # INSTALL file with ISO 646 or ISO 8859 quotation marks.
37 INSTALL.ISO: install.texi
38         { $(INSTALL_PRELUDE) cat $<; } > tmpi.texi
39         $(MAKEINFO) --plaintext --no-validate tmpi.texi | sed -e "s/\`\([^']*\)'/'\1'/g" > $@
40         rm -f tmpi.texi
41
42 # INSTALL file wit ISO 10646 (Unicode) quotation marks.
43 INSTALL.UTF-8: install.texi
44         { $(INSTALL_PRELUDE) cat $<; } > tmpu.texi
45         $(MAKEINFO) --plaintext --no-validate tmpu.texi | sed -e "s/\`\([^']*\)'/‘\1’/g" > $@
46         rm -f tmpu.texi
47
48 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)
49
50 # Date of last update. Requires GNU date.
51 updated-stamp: $(GNULIB_TEXI_FILES)
52         date -u -r `ls -t $^ | sed 1q` +"@set UPDATED %F %T" > $@
53
54 # Dependencies. Search for @include to find them all.
55 gnulib.info gnulib.html gnulib.dvi gnulib.pdf: $(GNULIB_TEXI_FILES) updated-stamp
56 standards.info standards.html standards.dvi: standards.texi make-stds.texi fdl.texi
57
58 mostlyclean:
59         rm -f *.aux *.cp *.cps *.fn *.ky *.log *.pg *.toc *.tp *.vr *.vrs
60         rm -f updated-stamp
61
62 clean: mostlyclean
63         rm -f *.info *.html *.dvi *.ps *.pdf