内部にサブディレクトリを含むディレクトリがあります。ヘッダー ファイルの make ファイルにインクルード パスとして親ディレクトリを含めたい。すべてのサブディレクトリでヘッダー ファイルが検索されるような構文はありますか。
[EDIT] Posting the question in more detail
There are three sub folders in a parent folder
parentFolder/child1
parentFolder/child2
parentFolder/child3
There are header files in each all subfolders
Using -I option in makefile for header file path, i have to use
HEADER_PATH += -I./parentFolder
HEADER_PATH += -I./parentFolder/child1
HEADER_PATH += -I./parentFolder/child2
HEADER_PATH += -I./parentFolder/child3
Is there any way I can mention only the parent folder , but the search for header files will happen in all the subfolders also