the name of the object file we expect to be produced -- this will always be based on the original name -- we do not compile the preprocessed files
(self)
| 77 | |
| 78 | |
| 79 | def obj(self): |
| 80 | """ the name of the object file we expect to be produced -- this |
| 81 | will always be based on the original name -- we do not compile the |
| 82 | preprocessed files """ |
| 83 | return self.name.replace(self.ext, ".o") |
| 84 | |
| 85 | |
| 86 | def defined_modules(self): |