Whamcloud - gitweb
- fix make dist
[fs/lustre-release.git] / lustre / doc / Makefile.am
index d379eb0..9f88aec 100644 (file)
@@ -3,26 +3,42 @@
 # 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 =  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
+LYXFILES= master.lyx evolution.lyx  llocks.lyx mgmt.lyx uncertain.lyx\
+       fs.lyx         lustre-HOWTO.lyx      namespace.lyx\
+       glossary.lyx   lustre-debugging.lyx  network.lyx\
+       intro.lyx      obdspec.lyx
 
-EXTRA_DIST = $(DOCS)
+MAINTAINERCLEANFILES =  $(IMAGES) $(DOCS)
 
-all: master.pdf
+EXTRA_DIST = $(DOCS) $(IMAGES) $(LYXFILES)
+
+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 $< > $@
+       -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)
+
+syncweb: master.pdf
+       cp master.pdf /usr/src/www/content/lustre/docs/master.pdf
+       ( cd /usr/src/www ; make lustre ; make synclustre )
 
 dist-hook:
        rm -rf $(distdir)/figs/CVS
 
 include $(top_srcdir)/Rules
-