Home | History | Annotate | Line # | Download | only in internal
      1  1.1  christos #!/bin/sh
      2  1.1  christos 
      3  1.1  christos for nm in `cat $1` ; do
      4  1.1  christos   n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
      5  1.1  christos   echo "#undef je_${n}"
      6  1.1  christos done
      7