On Tuesday 10 September 2013 23:12:01 Sven Eckelmann wrote:
The *.d depends files for make just list the files used when building an object file. Removing a file listed in such a dependency file causes make to search for a way to recreate it. This usually cannot work because these files aren't autogenerated.
The gcc option -MP can be used to generate empty rule for these files. Removing a file in a dependency list will then execute this empty rule and continue with the execution of the creation of the object file. This compilation process will then automatically correct the dependency file.
Signed-off-by: Sven Eckelmann sven@narfation.org
Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Applied in revision 4c5c86e.
Thanks, Marek