How to generate top level include file which includes all other header files from all subdirectories?
I am working on a large project with many subdirectories and many header files in those subdirectories. Subdirectories contain more subdirectories and those subdirectories have more header files. It is a big tree like multi-level structure. I want to provide top level header file to the users who doesn't want to include headers manually. Top level header file should include all other headers with relative path. I am sinking to automate the process with sed or awk, but not sure how to start.
Any tips are greatly appreciated.
Thanks.