Libsec doesn't compile without a reduce script, either.
This commit is contained in:
parent
0b424d7bd7
commit
7025271a71
2 changed files with 13 additions and 2 deletions
|
|
@ -3,8 +3,6 @@ shift
|
||||||
objtype=$1
|
objtype=$1
|
||||||
shift
|
shift
|
||||||
|
|
||||||
nl='
|
|
||||||
'
|
|
||||||
for i in $*
|
for i in $*
|
||||||
do
|
do
|
||||||
j=`echo $i | sed 's/\.o//'`
|
j=`echo $i | sed 's/\.o//'`
|
||||||
|
|
|
||||||
13
src/libsec/port/reduce
Normal file
13
src/libsec/port/reduce
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue