Issue29

Title Makefile misses dependencies
Priority urgent Status resolved
Superseder Nosy List malte, silvia
Assigned To malte Keywords
Optional summary

Created on 2009-10-10.02:04:29 by malte, last changed by malte.

Messages
msg89 (view) Author: malte Date: 2009-10-19.14:18:36
Fixed in r3380.

The cause of the problem was that gcc -MM strips the directory part of the
target file in the rules it generates. From "man gcc" (section on -M):

           Unless specified explicitly (with -MT or -MQ), the object file name
           consists of the name of the source file with any suffix replaced
           with object file suffix and with any leading directory parts
           removed.
msg63 (view) Author: malte Date: 2009-10-10.02:04:28
The trunk Makefile doesn't track dependencies for code in subdirectories.

For example, Makefile.depend contains the following entry:

obj/landmarks_graph.o: landmarks/landmarks_graph.cc \
  landmarks/landmarks_graph.h landmarks/../operator.h \
  landmarks/../globals.h landmarks/../state.h landmarks/exploration.h \
  landmarks/../heuristic.h landmarks/../globals.h \
  landmarks/landmarks_types.h landmarks/../state.h landmarks/util.h

This is wrong: the target at the start should be obj/landmarks/landmarks_graph.o.
History
Date User Action Args
2009-10-19 14:18:46maltesetstatus: chatting -> resolved
2009-10-19 14:18:36maltesetstatus: unread -> chatting
messages: + msg89
2009-10-19 14:13:57maltesetassignedto: silvia -> malte
2009-10-16 02:25:19silviasetnosy: + silvia
assignedto: silvia
2009-10-10 02:04:29maltecreate