Admin/build
changeset 48972 196520d51afd
parent 48691 335d60e1e328
child 49173 fa01a202399c
--- a/Admin/build	Tue Aug 28 16:43:47 2012 +0200
+++ b/Admin/build	Tue Aug 28 17:49:02 2012 +0200
@@ -25,7 +25,6 @@
 
     all             all modules below
     browser         graph browser (requires jdk)
-    doc             documentation (requires latex)
     jars            Isabelle/Scala layer (requires \$ISABELLE_JDK_HOME and \$SCALA_HOME)
     jars_test       test separate build of jars
     jars_fresh      fresh build of jars
@@ -52,7 +51,6 @@
 
 function build_all ()
 {
-  build_doc
   build_browser
   build_jars
 }
@@ -66,23 +64,6 @@
 }
 
 
-function build_doc ()
-{
-  echo "###"
-  echo "### Building documentation ..."
-  echo "###"
-
-  cd "$ISABELLE_HOME/doc-src"
-  for DOC in $(cat Dirs)
-  do
-    pushd "$DOC" >/dev/null
-    make clean dvi || fail "DVI document for $DOC failed!"
-    make clean pdf || fail "PDF document for $DOC failed!"
-    popd >/dev/null
-  done
-}
-
-
 function build_jars ()
 {
   pushd "$ISABELLE_HOME/src/Pure" >/dev/null
@@ -98,7 +79,6 @@
   case $MODULE in
     all) build_all;;
     browser) build_browser;;
-    doc) build_doc;;
     jars) build_jars;;
     jars_fresh) build_jars -f;;
     jars_test) build_jars -t;;