diff options
Diffstat (limited to 'source4/script/cflags.sh')
-rwxr-xr-x | source4/script/cflags.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/source4/script/cflags.sh b/source4/script/cflags.sh deleted file mode 100755 index dc7bd794c6..0000000000 --- a/source4/script/cflags.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -# This is a hack to allow per target cflags. It isn't very elegant, but it -# is the most portable idea we have come up with yet -# tridge@samba.org, July 2005 - -TARGET=$1 - -check_flags() -{ - NAME=$1 - ( - while read tag flags; do - if [ "$tag" = "$NAME" ] || [ "./$tag" = "$NAME" ]; then - echo "$flags" - exit 0; - fi - done - ) < extra_cflags.txt -} - - -NAME=$TARGET -while [ "$NAME" != "." ]; do - check_flags "$NAME" - NAME=`dirname $NAME` -done -exit 0; |