Whamcloud - gitweb
Add version information to lustre-HOWTO.
[fs/lustre-release.git] / lustre / doc / Makefile.am
1 # Copyright (C) 2001  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 = lyx --export pdf
6 LYX2TXT = lyx --export text
7 LYX2HTML = lyx --export html
8 SUFFIXES = .lyx .pdf .sgml .html .txt .fig .eps
9
10 DOCS = lustre.pdf lustre-HOWTO.txt
11 IMAGES =  cache1.eps cache2.eps intermezzocache.eps intermezzofilesys.eps meta.eps metadata1.eps networklayer.eps bigpicture.eps intermezzo.eps mds.eps portals.eps client.eps layering.eps metadata.eps sb.eps cow.eps lockacq.eps obdfs.eps snapsetup.eps dirbodyapi.eps loraid.eps ost.eps updates.eps hotmigrate.eps lustreclusters.eps osthw.eps portals-lib.eps lockqueues.eps lockexample1.eps lockexample2.eps lockexample3.eps lockexample4.eps lockseverity.eps
12 LYXFILES= master.lyx evolution.lyx  llocks.lyx mgmt.lyx uncertain.lyx\
13         fs.lyx         lustre-HOWTO.lyx      namespace.lyx\
14         glossary.lyx   lustre-debugging.lyx  network.lyx\
15         intro.lyx      obdspec.lyx
16
17 MAINTAINERCLEANFILES =  $(IMAGES) $(DOCS) lustre-HOWTO.lyx
18 CLEANFILES = *.lyxT
19
20 EXTRA_DIST = $(DOCS) $(IMAGES) $(LYXFILES)
21
22 all: $(DOCS)
23
24 # update date and version in document
25 tag := $(shell cat $(srcdir)/CVS/Tag 2>/dev/null || echo HEAD)
26 addstamp = sed "s|^Date:.*|Date: `date +%D`|g; s|^Version:.*|Version: $(tag)|g"
27
28 .lyx.pdf:
29         rm -f $<T
30         $(addstamp) $< > $<T
31         @$(LYX2PDF) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
32         rm -f $<T
33
34 .lyx.txt:
35         rm -f $<T
36         $(addstamp) $< > $<T
37         @$(LYX2TXT) $< || printf "\n*** Warning: not creating text docs; install lyx to rectify this\n"
38         rm -f $<T
39
40 .lyx.html:
41         rm -f $<T
42         $(addstamp) $< > $<T
43         @$(LYX2HTML) $< || printf "\n*** Warning: not creating HTML docs; install lyx to rectify this\n"
44         rm -f $<T
45
46 .fig.eps:
47         -fig2dev -L eps $< > $@
48
49 lustre.lyx: master.lyx $(IMAGES)
50         (ver=`awk -F/ -v key=$<  '$$2 == key {print $$3}' CVS/Entries`;\
51         echo "version for $< is $$ver";\
52         sed "s/version .*/version $$ver/" < $< > lustre.lyx;\
53         )
54
55 syncweb: lustre.pdf
56         cp lustre.pdf /usr/src/www/content/lustre/docs/lustre.pdf
57         ( cd /usr/src/www ; make lustre ; make synclustre )
58
59 dist-hook:
60         rm -rf $(distdir)/figs/CVS
61
62 include $(top_srcdir)/Rules