The R Project SVN R

Rev

Rev 9104 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9104 Rev 24162
Line 34... Line 34...
34
esac
34
esac
35
 
35
 
36
# Check for object or archive files
36
# Check for object or archive files
37
ofiles=""
37
ofiles=""
38
for arg; do
38
for arg; do
39
    case $arg in *.o) ofiles="$ofiles $arg";; esac
-
 
40
    case $arg in *.a) ofiles="$ofiles $arg";; esac
39
    case $arg in *.o | *.lo | *.a) ofiles="$ofiles $arg";; esac
41
done
40
done
42
 
41
 
43
# Call nm so that it prints only global symbols (unsorted, w/o header)
42
# Call nm so that it prints only global symbols (unsorted, w/o header)
44
nm=nm
43
nm=nm
45
nmopts="-p -g -h"
44
nmopts="-p -g -h"