1#! /bin/sh
2if test "x$1" '!=' "xrcu"; then
3	echo "$0: this isn't really ar.  Only rcu is supported" >&2
4	exit 1
5fi
6if test "x$2" == "x"; then
7	echo "$0: no archive file specified" >&2
8	exit 1
9fi
10if test "x$3" == "x"; then
11	echo "$0: no archive members specified" >&2
12	exit 1
13fi
14outputfile="$2"
15shift
16shift
17/Users/dfe/bin/mw8.3/realmw/mwld -xm l -o "$outputfile" "$@"
18