ack/util/ceg/util/create_ofiles

14 lines
150 B
Text
Raw Normal View History

list=
1987-11-20 10:41:03 +00:00
for i in *.c
do
b=`basename $i .c`
1988-02-03 10:58:52 +00:00
if test ! -f $b.o
1987-11-20 10:41:03 +00:00
then
>$b.o
list="$list $i"
1987-11-20 10:41:03 +00:00
fi
done
: my SUN is too fast ...
sleep 2
touch $list