Whamcloud - gitweb
Properly munge CVS/Tag.
[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 = lyx --export pdf
6 LYX2TXT = lyx --export text
7 LYX2HTML = lyx --export html
8 SUFFIXES = .lin .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= lustre.lin evolution.lyx  llocks.lyx mgmt.lyx uncertain.lyx\
13         fs.lyx         lustre-HOWTO.lin      namespace.lyx\
14         glossary.lyx   lustre-debugging.lyx  network.lyx\
15         intro.lyx      obdspec.lyx recovery.lyx
16
17 MAINTAINERCLEANFILES =  $(IMAGES) $(DOCS) $(GENERATED)
18 GENERATED = lustre-HOWTO.lyx lustre.lyx
19
20 EXTRA_DIST = $(DOCS) $(IMAGES) $(LYXFILES) master.bib
21
22 all: $(DOCS)
23
24 # update date and version in document
25 tag := $(shell sed -e 's/^.//' $(srcdir)/CVS/Tag)
26 date := $(shell date +%x)
27 addversion = sed -e 's|@T''AG@|$(tag)|g; s|@VER''SION@|$(VERSION)|g; s|@DA''TE@|$(date)|g'
28
29 # Regenerate when the $(VERSION) or CVS/Tag changes.
30 CVS/Tag:
31         echo NHEAD > CVS/Tag
32 .INTERMEDIATE: $(GENERATED)
33 $(GENERATED) : %.lyx: %.lin Makefile CVS/Tag
34         $(addversion) $< > $@
35
36 .lyx.pdf:
37         @$(LYX2PDF) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
38
39 .lyx.txt:
40         @$(LYX2TXT) $< || printf "\n*** Warning: not creating text docs; install lyx to rectify this\n"
41
42 .lyx.html:
43         @$(LYX2HTML) $< || printf "\n*** Warning: not creating HTML docs; install lyx to rectify this\n"
44
45 lustre.pdf: $(IMAGES)
46 .fig.eps:
47         -fig2dev -L eps $< > $@
48
49 syncweb: lustre.pdf
50         cp lustre.pdf /usr/src/www/content/lustre/docs/lustre.pdf
51         ( cd /usr/src/www ; make lustre ; make synclustre )
52
53 dist-hook:
54         rm -rf $(distdir)/figs/CVS
55
56 include $(top_srcdir)/Rules