copy-acl: ignore ENOTSUP on HP-UX
[gnulib.git] / doc / Makefile
1 # Makefile for gnulib doc.
2 # Copyright (C) 2004, 2006-2010 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 file with old ASCII quotation marks (looks ugly on modern machines).
32 INSTALL: install.texi
33         $(MAKEINFO) --plaintext --no-validate $< > $@
34
35 # INSTALL file with ISO 646 or ISO 8859 quotation marks.
36 INSTALL.ISO: install.texi
37         $(MAKEINFO) --plaintext --no-validate $< | sed -e "s/\`\([^']*\)'/'\1'/g" > $@
38
39 # INSTALL file wit ISO 10646 (Unicode) quotation marks.
40 INSTALL.UTF-8: install.texi
41         $(MAKEINFO) --plaintext --no-validate $< | sed -e "s/\`\([^']*\)'/‘\1’/g" > $@
42
43 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)
44
45 # Date of last update. Requires GNU date.
46 updated-stamp: $(GNULIB_TEXI_FILES)
47         date -u -r `ls -t $^ | sed 1q` +"@set UPDATED %F %T" > $@
48
49 # Dependencies. Search for @include to find them all.
50 gnulib.info gnulib.html gnulib.dvi gnulib.pdf: $(GNULIB_TEXI_FILES) updated-stamp
51 standards.info standards.html standards.dvi: standards.texi make-stds.texi fdl.texi
52
53 mostlyclean:
54         rm -f *.aux *.cp *.cps *.fn *.ky *.log *.pg *.toc *.tp *.vr *.vrs
55         rm -f updated-stamp
56
57 clean: mostlyclean
58         rm -f *.info *.html *.dvi *.ps *.pdf