pike.git
/
NT
/
tools
/
ar
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/NT/tools/ar:5:
set -e OPTIONS=$1 shift OUTPUT=$1 shift case "$CC" in *rntcl) case "E$OPTIONS" in
+
*x*)
+
ofixed="`fixpath $OUTPUT`"
+
if [ $# = 0 ]; then
+
to_extract=`do_cmd lib -list -nologo "$ofixed"`
+
else
+
to_extract=$@
+
fi
+
for a in $to_extract
+
do
+
do_cmd lib -nologo "-extract:$a" "$ofixed"
+
done
+
exit $?
+
+
;;
*d*) exit 1 ;; *x*) exit 1 ;; *q*|*r*) do_cmd lib "-OUT:`fixpath $OUTPUT`" `fixpath $@` exit $? ;; esac
-
+
;; *rntcc) XOPTS="-b -c" case "E$OPTIONS" in *x*) OPCHAR='*' if [ $# = 0 ]; then