3 XCOMM $XConsortium: mergelib.cpp,v 1.3 91/08/22 11:08:08 rws Exp $
5 XCOMM Copyright 1989 Massachusetts Institute of Technology
7 XCOMM Permission to use, copy, modify, distribute, and sell this software and its
8 XCOMM documentation for any purpose is hereby granted without fee, provided that
9 XCOMM the above copyright notice appear in all copies and that both that
10 XCOMM copyright notice and this permission notice appear in supporting
11 XCOMM documentation, and that the name of M.I.T. not be used in advertising or
12 XCOMM publicity pertaining to distribution of the software without specific,
13 XCOMM written prior permission. M.I.T. makes no representations about the
14 XCOMM suitability of this software for any purpose. It is provided "as is"
15 XCOMM without express or implied warranty.
17 XCOMM M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
18 XCOMM IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T.
19 XCOMM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
20 XCOMM WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
21 XCOMM OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
22 XCOMM CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24 XCOMM Author: Jim Fulton, MIT X Consortium
26 XCOMM mergelib - merge one library into another; this is commonly used by X
27 XCOMM to add the extension library into the base Xlib.
30 usage="usage: $0 to-library from-library [object-filename-prefix]"
36 *) echo "$usage" 1>&2; exit 1 ;;
42 if [ ! -f $fromlib ]; then
43 echo "$0: no such from-library $fromlib" 1>&2
47 if [ ! -f $tolib ]; then
48 echo "$0: no such to-library $tolib" 1>&2
54 XCOMM Create a temp directory, and figure out how to reference the
55 XCOMM object files from it (i.e. relative vs. absolute path names).
63 if [ ! -d $tmpdir ]; then
64 echo "$0: unable to create temporary directory $tmpdir" 1>&2
80 XCOMM In the temp directory, extract all of the object files and prefix
81 XCOMM them with some symbol to avoid name clashes with the base library.
84 ar x ${upfrom}$fromlib
91 XCOMM Merge in the object modules, ranlib (if appropriate) and cleanup
93 ARCMD ${upto}$tolib *.o