file_dependencies.expected 756 B

12345678910111213141516171819202122232425262728
  1. make ordering: zow.h boz.h zig.cpp zig.o dax.h yow.h zag.cpp zag.o bar.cpp bar.o foo.cpp foo.o libfoobar.a libzigzag.a killerapp
  2. parallel make ordering,
  3. vertices with same group number can be made in parallel
  4. time_slot[dax.h] = 0
  5. time_slot[yow.h] = 1
  6. time_slot[boz.h] = 0
  7. time_slot[zow.h] = 0
  8. time_slot[foo.cpp] = 1
  9. time_slot[foo.o] = 2
  10. time_slot[bar.cpp] = 2
  11. time_slot[bar.o] = 3
  12. time_slot[libfoobar.a] = 4
  13. time_slot[zig.cpp] = 1
  14. time_slot[zig.o] = 2
  15. time_slot[zag.cpp] = 2
  16. time_slot[zag.o] = 3
  17. time_slot[libzigzag.a] = 5
  18. time_slot[killerapp] = 6
  19. A change to yow.h will cause what to be re-made?
  20. yow.h bar.cpp zag.cpp bar.o zag.o libfoobar.a libzigzag.a killerapp
  21. The graph has a cycle? 0
  22. adding edge bar_cpp -> dax_h
  23. The graph has a cycle now? 1