Files
tack/util/ceg/util/create_ofiles
1987-11-20 10:41:03 +00:00

10 lines
94 B
Plaintext

for i in *.c
do
b=`basename $i .c`
if test !( -f $b.o)
then
>$b.o
touch $i
fi
done