]> sourceware.org Git - systemtap.git/commitdiff
Only disable building of PDF version of refdocs if xmlto is bad
authorEugeniy Meshcheryakov <eugen@debian.org>
Tue, 5 May 2009 21:14:54 +0000 (23:14 +0200)
committerEugeniy Meshcheryakov <eugen@debian.org>
Tue, 5 May 2009 21:14:54 +0000 (23:14 +0200)
doc/SystemTap_Tapset_Reference/Makefile.am

index 7903b12bfa5b0e23181238d39fa112dff6003d2c..276c71697c7e705223972379f7bc7c0370a7f94d 100644 (file)
@@ -19,7 +19,11 @@ SRCTREE=$(abs_top_srcdir)/
 DOCPROC=$(abs_builddir)/docproc
 
 if BUILD_REFDOCS
-all: tapsets.pdf stamp-htmldocs stamp-mandocs
+PDFDOCS = tapsets.pdf
+endif
+
+if BUILD_DOCS
+all: $(PDFDOCS) stamp-htmldocs stamp-mandocs
 tapsets.xml: docproc $(shell find $(SRCTREE) -name '*.stp')
        SRCTREE=$(SRCTREE) $(DOCPROC) doc $(abs_srcdir)/tapsets.tmpl > tapsets.xml.new
        if cmp tapsets.xml.new tapsets.xml >/dev/null ; then \
@@ -43,8 +47,10 @@ stamp-mandocs: tapsets.xml
 #FIXME need to figure out where to install things appropriately
 #installmandocs: mandocs
 install-data-hook:
+if BUILD_REFDOCS
        $(MKDIR_P)  $(DOC_INSTALL_DIR)
        $(INSTALL_DATA) tapsets.pdf $(DOC_INSTALL_DIR)
+endif
        $(MKDIR_P)  $(MAN_INSTALL_DIR)
        $(INSTALL_DATA) man3/* $(MAN_INSTALL_DIR)
        $(MKDIR_P)  $(HTML_INSTALL_DIR)
This page took 0.026954 seconds and 5 git commands to generate.