summaryrefslogtreecommitdiffstats
path: root/src/crypto/isa-l/isa-l_crypto/tools/nasm-filter.sh
blob: 5ec9ba3f39a8bfa2b0a4f2a2fa0fd84ecfa0f26a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#/bin/sh

# Filter out unnecessary options added by automake

while [ -n "$*" ]; do
    case "$1" in
	-f | -o | -D )
	    # Supported options with arg
	    options="$options $1 $2"
	    shift
	    shift
	    ;;
	-I | -i )
	    options="$options $1 $2/"
	    shift
	    shift
	    ;;
	--prefix* )
	    # Supported options without arg
	    options="$options $1"
	    shift
	    ;;
	-I* | -i* )
	    options="$options $1/"
	    shift
	    ;;
	-D* ) # For defines we need to remove spaces
	    case "$1" in
		*' '* ) ;;
		*) options="$options $1" ;;
	    esac
	    shift
	    ;;
	#-blah )
	# Unsupported options with args - none known
	-* )
	    # Unsupported options with no args
	    shift
	    ;;
	* )
	    args="$args $1"
	    shift
	    ;;
    esac
done

nasm $options $args