2013-08-20 23:45:24 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
# libtool and yasm do not get along.
|
|
|
|
# filter out any crap that libtool feeds us that yasm does not understand.
|
|
|
|
new=""
|
|
|
|
touch=""
|
|
|
|
while [ -n "$*" ]; do
|
|
|
|
case "$1" in
|
|
|
|
-f )
|
|
|
|
shift
|
|
|
|
new="-f $1"
|
|
|
|
shift
|
|
|
|
;;
|
2013-08-22 21:20:57 +00:00
|
|
|
-g* | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | --param* | -O* | -I* | -m* | -pipe )
|
2013-08-20 23:45:24 +00:00
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-MT )
|
|
|
|
shift
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-MF )
|
|
|
|
shift
|
|
|
|
touch="$1"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
new="$new $1"
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2013-08-22 21:20:57 +00:00
|
|
|
echo $0: yasm $new
|
2013-08-20 23:45:24 +00:00
|
|
|
yasm $new
|
|
|
|
|
|
|
|
[ -n "$touch" ] && touch $touch
|
2013-08-22 21:20:57 +00:00
|
|
|
|
|
|
|
true
|