build
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:2k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #!/bin/sh
  2. ## The contents of this file are subject to the Mozilla Public
  3. ## License Version 1.1 (the "License"); you may not use this file
  4. ## except in compliance with the License. You may obtain a copy of
  5. ## the License at http://www.mozilla.org/MPL/
  6. ##
  7. ## Software distributed under the License is distributed on an "AS
  8. ## IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9. ## implied. See the License for the specific language governing
  10. ## rights and limitations under the License.
  11. ##
  12. ## The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  13. ## library.
  14. ##
  15. ## The Initial Developer of the Original Code is 
  16. ## Michael J. Fromberger <sting@linguist.dartmouth.edu>
  17. ##
  18. ## Portions created by Michael J. Fromberger are 
  19. ## Copyright (C) 1998, 2000 Michael J. Fromberger. All Rights Reserved.
  20. ##
  21. ## Contributor(s):
  22. ## Netscape Communications Corporation
  23. ##
  24. ## Alternatively, the contents of this file may be used under the
  25. ## terms of the GNU General Public License Version 2 or later (the
  26. ## "GPL"), in which case the provisions of the GPL are applicable
  27. ## instead of those above.  If you wish to allow use of your
  28. ## version of this file only under the terms of the GPL and not to
  29. ## allow others to use your version of this file under the MPL,
  30. ## indicate your decision by deleting the provisions above and
  31. ## replace them with the notice and other provisions required by
  32. ## the GPL.  If you do not delete the provisions above, a recipient
  33. ## may use your version of this file under either the MPL or the
  34. ## GPL.
  35. ## 
  36. ## $Id: build,v 1.2 2000/07/17 22:34:30 nelsonb%netscape.com Exp $
  37. ##
  38. VERS="1.7p6"
  39. SECT="1"
  40. NAME="MPI Tools"
  41. echo "Building manual pages ..."
  42. case $# in
  43.   0)
  44.     files=`ls *.pod`
  45.     ;;
  46.   *)
  47.     files=$*
  48.     ;;
  49. esac
  50. for name in $files
  51. do
  52.    echo -n "$name ... "
  53. #  sname=`noext $name`
  54.    sname=`basename $name .pod`
  55.    pod2man --section="$SECT" --center="$NAME" --release="$VERS" $name > $sname.$SECT
  56.    echo "(done)"
  57. done
  58. echo "Finished building."