291b607f4e
.c files are detectably newer
14 lines
150 B
Plaintext
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
|