[make] output a text file with all the source files and include paths used in the build

This commit is contained in:
Travis Geiselbrecht
2015-11-20 20:51:52 -08:00
parent 614eaf166a
commit 8a57db12ee
3 changed files with 19 additions and 0 deletions

View File

@@ -89,6 +89,9 @@ $(MODULE_OBJECT): $(MODULE_OBJS) $(MODULE_EXTRA_OBJS)
@echo linking $@
$(NOECHO)$(LD) $(GLOBAL_MODULE_LDFLAGS) -r $^ -o $@
# track all of the source files compiled
ALLSRCS += $(MODULE_SRCS)
# track all the objects built
ALLOBJS += $(MODULE_OBJS)