User:JoeyArmstrong/makefiles/main

From MozillaWiki
Jump to: navigation, search

Makefile Ramblings

Performance & Bottlenecks

Problems

  • bug 623617 Non-recursive builds Makefilegen
  • Dependency builds - Make run twice in a sandbox should be a nop.
  • Needless work: *clean targets are performing build related work
    • autoconf, configure, isinstall, etc are a few tasks currently being triggered
  • windows -vs- horrible overhead per shell spawned
    • Replace double-colon rules with dependency chains to avoid shell overhead.

Resources

Bugs

make-makefile