Whamcloud - gitweb
Change the cleanup scripts to use the debug_kernel instead of get_debug.
[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 = bigpicture.eps intermezzo.eps mds.eps portals-lib.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
12 CLEANFILES = $(IMAGES) $(DOCS)
13
14 EXTRA_DIST = $(DOCS)
15
16 all: $(DOCS)
17
18 .lyx.pdf:
19         @$(LYX2PDF) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
20
21 .lyx.txt:
22         @$(LYX2TXT) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
23
24 .lyx.html:
25         @$(LYX2HTML) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n"
26
27 .fig.eps:
28         -fig2dev -L eps $< > $@
29
30 master.pdf: master.lyx $(IMAGES)
31
32 dist-hook:
33         rm -rf $(distdir)/figs/CVS
34
35 include $(top_srcdir)/Rules