Whamcloud - gitweb
- fix make dist
[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 = master.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)
18
19 EXTRA_DIST = $(DOCS) $(IMAGES) $(LYXFILES)
20
21 all: $(DOCS)
22
23 .lyx.pdf:
24         @$(LYX2PDF) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
25
26 .lyx.txt:
27         @$(LYX2TXT) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
28
29 .lyx.html:
30         @$(LYX2HTML) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
31
32 .fig.eps:
33         -fig2dev -L eps $< > $@
34
35 master.pdf: master.lyx $(IMAGES)
36
37 syncweb: master.pdf
38         cp master.pdf /usr/src/www/content/lustre/docs/master.pdf
39         ( cd /usr/src/www ; make lustre ; make synclustre )
40
41 dist-hook:
42         rm -rf $(distdir)/figs/CVS
43
44 include $(top_srcdir)/Rules