plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 7025271a714583fc0b34f7c794a0a24e7241971d
parent 0b424d7bd770a7767da58427e549022279a65d51
Author: wkj <devnull@localhost>
Date:   Wed, 21 Apr 2004 17:52:08 +0000

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

Diffstat:
Msrc/libmp/port/reduce | 2--
Asrc/libsec/port/reduce | 13+++++++++++++
2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/src/libmp/port/reduce b/src/libmp/port/reduce @@ -3,8 +3,6 @@ shift objtype=$1 shift -nl=' -' for i in $* do j=`echo $i | sed 's/\.o//'` diff --git a/src/libsec/port/reduce b/src/libsec/port/reduce @@ -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