mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
203543d1e7
Initial Metrowerks CodeWarrior compiler support new file support-files/MacOSX/mwar-wrapper: Initial Metrowerks CodeWarrior compiler support BUILD/compile-darwin-mwcc: Initial Metrowerks CodeWarrior compiler support support-files/MacOSX/mwcc-wrapper: Initial Metrowerks CodeWarrior compiler support
16 lines
258 B
Bash
Executable file
16 lines
258 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This script can only create a library, not take it apart
|
|
# again to AR files
|
|
|
|
case $1 in
|
|
-d*|-m*|-t*|-p*|-r*|-x*|x)
|
|
echo "$0: can't handle arguments $*"
|
|
exit 1;
|
|
;;
|
|
-c|c|cr|cru|cu)
|
|
shift;
|
|
;;
|
|
esac
|
|
|
|
exec mwld -lib -o $*
|