From: adilger Date: Thu, 30 May 2002 22:13:59 +0000 (+0000) Subject: Create a plain-text version of lustre-HOWTO. X-Git-Tag: 0.4.2~211 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=823c1cd5d61142acc75ce2ea2e998cb0ba23a725;p=fs%2Flustre-release.git Create a plain-text version of lustre-HOWTO. --- diff --git a/lustre/doc/.cvsignore b/lustre/doc/.cvsignore index 747b3ed..249de7d 100644 --- a/lustre/doc/.cvsignore +++ b/lustre/doc/.cvsignore @@ -9,5 +9,6 @@ tags TAGS OBD-HOWTO.html OBD-HOWTO.txt +lustre-HOWTO.txt *.eps master.pdf diff --git a/lustre/doc/Makefile.am b/lustre/doc/Makefile.am index 34895bf..46eddde 100644 --- a/lustre/doc/Makefile.am +++ b/lustre/doc/Makefile.am @@ -3,23 +3,31 @@ # This code is issued under the GNU General Public License. # See the file COPYING in this distribution LYX2PDF = lyx --export pdf +LYX2TXT = lyx --export text +LYX2HTML = lyx --export html SUFFIXES = .lyx .pdf .sgml .html .txt .fig .eps -DOCS = master.pdf -# doc_DATA = $(DOCS) OBD-HOWTO.html OBD-HOWTO.txt -CLEANFILES = 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 master.pdf master.html +DOCS = master.pdf lustre-HOWTO.txt +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 +CLEANFILES = $(IMAGES) $(DOCS) EXTRA_DIST = $(DOCS) -all: master.pdf +all: $(DOCS) .lyx.pdf: - $(LYX2PDF) $< 2>/dev/null || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n" + @$(LYX2PDF) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n" + +.lyx.txt: + @$(LYX2TXT) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n" + +.lyx.html: + @$(LYX2HTML) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n" .fig.eps: -fig2dev -L eps $< > $@ -master.pdf: master.lyx 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 +master.pdf: master.lyx $(IMAGES) dist-hook: rm -rf $(distdir)/figs/CVS