Add basic libmp support for the x86.

This commit is contained in:
wkj 2004-04-21 04:45:31 +00:00
parent f2a700e22a
commit ac0e2db600
9 changed files with 349 additions and 15 deletions

View file

@ -3,14 +3,6 @@ shift
objtype=$1
shift
ls -p ../$objtype/*.[cs] >[2]/dev/null | sed 's/..$//' > /tmp/reduce.$pid
#
# if empty directory, just return the input files
#
if (! ~ $status '|') {
echo $*
rm /tmp/reduce.$pid
exit 0
}
echo $* | tr ' ' \012 | grep -v -f /tmp/reduce.$pid | tr \012 ' '
rm /tmp/reduce.$pid
reduce="("`ls -p ../$objtype/*.[cs] 2>/dev/null | sed 's/..$//' | sed 's/^.*\///' | tr '\012' '|' | sed 's/.$//'`")"
echo $* | tr ' ' '\012' | egrep -v $reduce | tr \012 ' '