Fix first image detection.
[gliv.git] / tools / gengetopt.awk
bloba007369987138a9e1c165107af9b008525ab5e65
1 BEGIN {
2 print "# Autogenerated by gengetopt.awk"
3 print "purpose \"Image Viewer using OpenGL\"";
4 print;
7 /^INT/ {
8 match($0, /".*"/, array);
9 printf "option \"%s\" %s %s int typestr=\"%s\" no\n", $2, $3, array[0], $(NF);
12 /^FLAG/ {
13 match($0, /".*"/, array);
14 printf "option \"%s\" %s %s string typestr=\"on|off\" no\n", $2, $3, array[0];