I currently using bison and flex in my project which has the following structure:
Project
|
|--include/
|--src/
all the headers are going into the include
directory, and all the source files are going into the src
directory.
I have my grammars and the flexer grammar in the include directory, and I would like to have the generated header files also in the include
directory, but the generated source files in the src
directory.
I there an option or something for bison to achieve this?