Libsec doesn't compile without a reduce script, either.

This commit is contained in:
wkj 2004-04-21 17:52:08 +00:00
parent 0b424d7bd7
commit 7025271a71
2 changed files with 13 additions and 2 deletions

View file

@ -3,8 +3,6 @@ shift
objtype=$1
shift
nl='
'
for i in $*
do
j=`echo $i | sed 's/\.o//'`

13
src/libsec/port/reduce Normal file
View file

@ -0,0 +1,13 @@
O=$1
shift
objtype=$1
shift
for i in $*
do
j=`echo $i | sed 's/\.o//'`
if test ! -f ../$objtype/$j.c -a ! -f ../$objtype/$j.s -a ! -f ../$objtype/$j.spp
then
echo $i
fi
done