libtool passes all kinds of crap to yasm that yasm does not understand.
Hide it with this ugly wrapper. Sigh.
Signed-off-by: Sage Weil <sage@inktank.com>
libs3/mswin \
libs3/src \
libs3/test \
- unittest_bufferlist.sh
+ unittest_bufferlist.sh \
+ yasm-wrapper
CLEANFILES =
bin_PROGRAMS =
--- /dev/null
+#!/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
+ ;;
+ -g | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | --param* | -O* | -I* )
+ shift
+ ;;
+ -MT )
+ shift
+ shift
+ ;;
+ -MF )
+ shift
+ touch="$1"
+ shift
+ ;;
+ * )
+ new="$new $1"
+ shift
+ ;;
+ esac
+done
+
+echo yasm $new
+yasm $new
+
+[ -n "$touch" ] && touch $touch