ack/util/ceg/util/create_ofiles
1988-02-03 10:58:52 +00:00

9 lines
92 B
Text

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