Whamcloud - gitweb
Fix valid uninitialized variable gcc warning.
[fs/lustre-release.git] / lustre / doc / Makefile.am
1 # Copyright (C) 2001, 2002 Cluster File Systems, Inc.
2 #
3 # This code is issued under the GNU General Public License.
4 # See the file COPYING in this distribution
5 LYX2PDF = GS_OPTIONS=-dCompatibilityLevel=1.1 $(srcdir)/tex2pdf -overwrite
6 TEX2PDF = GS_OPTIONS=-dCompatibilityLevel=1.1 $(srcdir)/tex2pdf -overwrite
7 LYX2PS = lyx --export ps
8 LYX2TEX = lyx --export latex
9 LYX2TXT = lyx --export text
10 LYX2HTML = lyx --export html
11 LATEX = latex
12 DVIPS = dvips
13 PS2PDF = ps2pdf
14 TEXEXPAND = texexpand
15 SUFFIXES = .lin .lyx .pdf .ps .sgml .html .txt .tex .fig .eps .dvi
16
17 DOCS = lustre.pdf lustre-HOWTO.txt
18 HOWTODOC = lustre-HOWTO.txt
19 IMAGES := $(patsubst %.fig,%.eps,$(wildcard *.fig))
20 LYXFILES= $(filter-out $(patsubst %.lin,%.lyx,$(wildcard *.lin)),\
21         $(wildcard *.lin *.lyx))
22
23 MAINTAINERCLEANFILES =  $(IMAGES) $(DOCS) $(VERSIONED)
24 CLEANFILES = *.aux *.tex doc.old/*.aux doc.old/*.tex *.eps *.log *.pdf
25 VERSIONED = lustre-HOWTO.lyx lustre.lyx doc.old/lustre-HOWTO.lyx doc.old/lustre.lyx
26 GENERATED = $(VERSIONED) lustre-full.tex lustre-chbar.tex
27
28 EXTRA_DIST = chbar.sh postbar tex2pdf $(DOCS) $(IMAGES) $(LYXFILES) lustre.bib
29
30 all: $(HOWTODOC)
31 docs: $(DOCS)
32
33 # These variables are set by lbuild/check-build.
34 RPMRELEASE ?= RELEASE
35 KERNTYPE ?= chaos
36 KERNRPM ?= kernel-2.4.18lustre13-RELEASE.i386.rpm
37
38 # update date and version in document
39 date := $(shell date +%x)
40 tag := $(shell echo '$$Name:  $$' | sed -e 's/^\$$Na''me: *\$$$$/HEAD/; s/^\$$Na''me: \(.*\) \$$$$/\1/')
41 addversion = sed -e 's|@T''AG@|$(tag)|g; s|@VER''SION@|$(VERSION)|g; s|@DA''TE@|$(date)|g; s|@RPM''RELEASE@|$(RPMRELEASE)|g; s|@KERN''TYPE@|$(KERNTYPE)|g; s|@KERN''RPM@|$(KERNRPM)|g'
42
43 # Regenerate when the $(VERSION) or $Name:  $ changes.
44 .INTERMEDIATE: $(GENERATED)
45 $(VERSIONED) : %.lyx: %.lin Makefile
46         $(addversion) $< > $@
47
48 .lyx.pdf:
49         @echo $(LYX2PDF) $< && $(LYX2PDF) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
50
51 .lyx.ps:
52         @echo $(LYX2PS) $< && $(LYX2PS) $< || printf "\n*** Warning: not creating PostScript docs; install lyx to rectify this\n"
53
54 .lyx.tex:
55         @echo $(LYX2TEX) $< && $(LYX2TEX) $< || printf "\n*** Warning: not creating LaTeX docs; install lyx to rectify this\n"
56
57 .lyx.txt:
58         @echo $(LYX2TXT) $< && $(LYX2TXT) $< || printf "\n*** Warning: not creating text docs; install lyx to rectify this\n"
59
60 .lyx.html:
61         @echo $(LYX2HTML) $< && $(LYX2HTML) $< || printf "\n*** Warning: not creating HTML docs; install lyx to rectify this\n"
62
63 .tex.pdf:
64         $(TEX2PDF) $<
65
66 .tex.dvi:
67         $(LATEX) $<
68         $(LATEX) $<
69
70 .dvi.ps:
71         $(DVIPS) $< -o $@
72
73 .ps.pdf:
74         $(PS2PDF) $< $@
75
76 lustre.tex lustre.pdf lustre.txt lustre.html: $(IMAGES) $(LYXFILES) lustre-HOWTO.lyx
77 .fig.eps:
78         -fig2dev -L eps $< > $@
79
80 syncweb: lustre.pdf
81         cp lustre.pdf /usr/src/www/content/lustre/docs/lustre.pdf
82         ( cd /usr/src/www ; make lustre ; make synclustre )
83 .PHONY: syncweb chbar
84
85 # Build a changebar document from the files in doc.old and this directory.
86 chbar: lustre-chbar.pdf
87
88 # FIXME: Temporary rules until pdftex displays changebars correctly.
89 lustre-chbar.pdf: lustre-chbar-nopdf.ps
90         $(PS2PDF) $< $@
91 lustre-chbar-nopdf.ps: lustre-chbar-nopdf.dvi
92         $(DVIPS) $< -o $@
93 lustre-chbar-nopdf.dvi: lustre-chbar-nopdf.tex
94         $(LATEX) $<
95         $(LATEX) $<
96 lustre-chbar-nopdf.tex: lustre-chbar.tex
97         sed -e 's/^\(.*usepackage.*pdftex\)/%\1/' $< > $@
98
99 %-chbar.tex: chbar.sh postbar doc.old/%-full.tex %-full.tex
100         $(SHELL) $(srcdir)/chbar.sh doc.old/$*-full.tex $*-full.tex | $(srcdir)/postbar > $@
101
102 # This rule needs to come before the next %-full.tex rule.
103 doc.old/lustre.tex: doc.old/lustre-HOWTO.lyx
104 doc.old/%-full.tex: doc.old/%.tex
105         cd doc.old && $(TEXEXPAND) -texinputs=. -output=$*-full.tex $*.tex
106
107 # This rule needs to come after the more specific doc.old rule.
108 %-full.tex: %.tex
109         $(TEXEXPAND) -texinputs=. -texinputs=$(srcdir) -output=$@ $<
110
111 # Check out the old directory if it doesn't exist.
112 doc.old/lustre.lin doc.old/lustre-HOWTO.lin:
113         @if test "X$(OLD)" = X; then \
114           echo "You must populate doc.old or specify a CVS tag like OLD=v0_5_1"; \
115           exit 1; \
116         fi
117         rm -rf doc.old
118         mkdir doc.old
119         cvs checkout -r $(OLD) -d doc.old lustre/doc
120
121 dist-hook:
122         rm -rf $(distdir)/figs/CVS
123
124 include $(top_srcdir)/Rules