home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 40.ddi / mergelib < prev    next >
Encoding:
Text File  |  1980-01-08  |  2.2 KB  |  109 lines

  1. :
  2. # $Header: mergelib.sh,v 6.3 89/04/21 14:32:52 cchew Exp $ mergelib.sh 
  3. #
  4. #    Usage: mergelib [-ddirectory ] [-oarchive] library ...
  5. #
  6. #    This script will build a library by extracting object modules
  7. #    from a list of libraries and adding them to a new library.
  8. #    The script gets complicated since it must use a modest amount
  9. #    of $WORKDIR space (approximately the size of the largest library
  10. #    in the list) and has to go through some fancy steps to
  11. #    guarantee that the list of modules does not exceed command
  12. #    line size.
  13. #
  14. #    Working  directory
  15. WORKDIR="/tmp"
  16. #
  17. #    'sed' argument
  18. SEDARG="/__.SYMDEF/d"
  19. #
  20. #    archieve flag
  21. ARFLAG_R="rl"
  22. ARFLAG_T="tl"
  23. ARFLAG_X="xl"
  24.  
  25.  
  26. case $ORACLE_TRACE in
  27.     T)    set -x ;;
  28. esac
  29. trap 'cd $WORKDIR; rm -rf libdir$$; exit' 1 2 3 15
  30. CURDIR=`pwd`
  31. cd $WORKDIR
  32. FILE=file
  33. #
  34. #    Insure that there is no other directory of this name in $WORKDIR
  35. #    Make the directory and cd into it.
  36. #
  37. rm -rf libdir$$
  38. mkdir libdir$$
  39. cd libdir$$
  40. #
  41. #    The default directory into which the merged archive is
  42. #    created is the current directory.
  43. #    The default liblist is null and the default archive name is
  44. #    libora.a
  45. #
  46. dirname=$CURDIR
  47. liblist=""
  48. archive="libora.a"
  49. if [ "$#" = "0" ]
  50. then
  51.     echo "Usage: $0 [-ddirectory ] [-oarchive] library ..."
  52.     exit 1
  53. fi
  54. #
  55. #    Process the argument list
  56. #
  57. for i in $*
  58. do
  59.     case $i in
  60.     -d*)
  61.         dirname=`expr $i : '^..\(.*\)'`
  62.         ;;
  63.     -o*)
  64.         archive=`expr $i : '^..\(.*\)'`
  65.         ;;
  66.     *)
  67.         liblist="$liblist $i"
  68.         ;;
  69.     esac
  70. done
  71. #
  72. #    For each of the libraries in the list, retrieve all of the
  73. #    object modules in batches of 20 and install them in the
  74. #    archive.  Remove the object modules from the $WORKDIR directory 
  75. #    when done.
  76. #
  77. #
  78. for i in $liblist
  79. do
  80.     echo Working on $i
  81.     case $i in
  82.         /*)    ;;
  83.         *)    i=$CURDIR/$i ;;
  84.     esac
  85.     if $FILE $i | grep archive > /dev/null
  86.     then
  87.         ar $ARFLAG_T $i | sed $SEDARG | split -20
  88.         for j in x*
  89.         do
  90.             ar $ARFLAG_X $i `cat $j`
  91.             ar $ARFLAG_R $dirname/$archive `cat $j`
  92.             rm -f `cat $j`
  93.         done
  94.         rm -f x*
  95.     elif $FILE $i | grep executable > /dev/null
  96.     then
  97.         ar $ARFLAG_R $dirname/$archive $i
  98.     else
  99.         echo Cannot recognize $i, skipping
  100.     fi
  101. done
  102. #
  103. #    Return to the $WORKDIR directory and remove the working directory.
  104. #
  105. cd $WORKDIR
  106. rm -rf libdir$$
  107.