mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
10 lines
170 B
Bash
Executable file
10 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
# $XConsortium: crayar.sh /main/2 1995/07/19 18:05:29 drk $
|
|
lib=$1
|
|
shift
|
|
if cray2; then
|
|
bld cr $lib `lorder $* | tsort`
|
|
else
|
|
ar clq $lib $*
|
|
fi
|
|
|