You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
while read possible ; do |
|
case "$possible" in |
|
*.la) |
|
for dep in `grep ^dependency_libs= "$possible" 2> /dev/null | \ |
|
sed -r -e "s,^dependency_libs='(.*)',\1,g"` ; do |
|
case "$dep" in |
|
/*.la) |
|
echo "libtool($dep)" |
|
;; |
|
esac |
|
done |
|
;; |
|
esac |
|
done
|
|
|