X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=doc%2Fmanual%2Fmake-tempfiles.sh;h=c0ce125d61651a367db6d4ce832ee234b9cb467d;hb=01b53542be411ba6ede003da5e7292e16602ab6e;hp=d0ce05c47afd9e2b1bd43a644226c31804c5719d;hpb=f5a3b5bfc0dadc42b92a73e16891f5093836d424;p=sbcl.git diff --git a/doc/manual/make-tempfiles.sh b/doc/manual/make-tempfiles.sh index d0ce05c..c0ce125 100644 --- a/doc/manual/make-tempfiles.sh +++ b/doc/manual/make-tempfiles.sh @@ -1,7 +1,6 @@ #!/bin/sh # Create Texinfo snippets from the documentation of exported symbols. -# Also create contrib-docs.texi-temp to include documentation in contrib/. # This software is part of the SBCL system. See the README file for # more information. @@ -15,25 +14,37 @@ # We create the documentation from the in-tree sbcl if it is found, # else an installed sbcl is used. sbclsystem=`pwd`/../../src/runtime/sbcl -if [ -e $sbclsystem ] +sbclcore=`pwd`/../../output/sbcl.core +if [ -e $sbclsystem ] && [ -e $sbclcore ] then -SBCL="${1:-$sbclsystem --core `pwd`/../../output/sbcl.core}" -export SBCL_HOME=`pwd`/../../contrib + SBCLRUNTIME="${1:-$sbclsystem --core $sbclcore}" + export SBCL_HOME=`pwd`/../../contrib else -SBCL="${1:-`which sbcl`}" + SBCLRUNTIME="${1:-`which sbcl`}" fi +SBCL="$SBCLRUNTIME --noinform --sysinit /dev/null --userinit /dev/null --noprint --disable-debugger" + # Output directory. This has to end with a slash (it's interpreted by # Lisp's `pathname' function) or you lose. This is normally set from # Makefile. DOCSTRINGDIR="${DOCSTRINGDIR:-docstrings/}" +# List of contrib modules that docstring docs will be created for. +# This is normally set from Makefile. +#MODULES="${MODULES:-sb-md5 :sb-rotate-byte}" + # List of package names that documentation will be created for. This # is normally set from Makefile. -PACKAGES="${PACKAGES:-:COMMON-LISP :SB-ALIEN :SB-DEBUG :SB-EXT :SB-GRAY :SB-MOP :SB-PROFILE :SB-THREAD}" +#PACKAGES="${PACKAGES:-:COMMON-LISP :SB-ALIEN :SB-DEBUG :SB-EXT :SB-GRAY :SB-MOP :SB-PROFILE :SB-THREAD}" -echo /creating docstring snippets from SBCL=\'$SBCL\' for packages \'$PACKAGES\' -echo "(progn (load \"docstrings.lisp\") (docstrings-to-texinfo \"$DOCSTRINGDIR\" $PACKAGES) (sb-ext:quit))" | $SBCL --noinform --sysinit /dev/null --userinit /dev/null --noprint --disable-debugger +echo /creating docstring snippets from SBCL=\'$SBCLRUNTIME\' for packages \'$PACKAGES\' +echo "(progn (load \"docstrings.lisp\") (dolist (module (quote ($MODULES))) (require module)) (docstrings-to-texinfo \"$DOCSTRINGDIR\" $PACKAGES) (sb-ext:quit))" | $SBCL -echo /creating contrib-docs.texi-temp -echo "(load \"create-contrib-doc-list.lisp\")" | $SBCL --noinform --sysinit /dev/null --userinit /dev/null --noprint --disable-debugger +echo /creating package-locks.texi-temp +if $SBCL --eval "(let ((plp (find-symbol \"PACKAGE-LOCKED-P\" :sb-ext))) (quit :unix-status (if (and plp (fboundp plp)) 0 1)))"; +then + cp package-locks-extended.texinfo package-locks.texi-temp +else + cp package-locks-basic.texinfo package-locks.texi-temp +fi