ack/util/ceg/util/create_ofiles
1988-09-08 11:43:03 +00:00

14 lines
150 B
Plaintext

list=
for i in *.c
do
b=`basename $i .c`
if test ! -f $b.o
then
>$b.o
list="$list $i"
fi
done
: my SUN is too fast ...
sleep 2
touch $list