include/fbgetty/generated/README
-----

'fgoptions.h' is preprocessed then parsed by 'fgoptions.awk'
to generate 'options.h'

Compared to the previous method:
   building one program that generate a source file,
   build that source, the program will compute offset, then output the full header.
the new method is simplier. It use offsetof() macro. And it don't disable cross compilation.
It's so simple than the previous method !

-----

If you want to add a variable, edit the file 'fgoptions.h' and add a line like this:

VARIABLE(type, name);

examples:

VARIABLE(char *, tty_device);
VARIABLE(char *, config_file);
VARIABLE(foo_struct *, a_more_complex_option);
...

-----
$Id: README,v 1.2.2.1 2001/07/11 20:01:15 lch Exp $
