すべてのサブディレクトリ内のすべてのmakeファイルを起動するmakefileを作成するにはどうすればよいですか。メインmakefileのメインディレクトリで「make」を実行すると、サブディレクトリのmakeが自動的にトリガーされますか?
例:
/makefile (this is the main makefile)
/subdirectory1/makefile
/subdirectory1/various .c/.h files compiled by the makefile in this directory
/subdirectory2/makefile
/subdirectory2/various .c/.h files compiled by the makefile in this directory
/subdirectory3/makefile
/subdirectory3/various .c/.h files compiled by the makefile in this directory