First page Back Continue Last page Summary Graphics
Hierarchical Makefiles
Typical hierarchical makefile
- all:
(cd dira;make -j8)
(cd dirb;make -j8)
(cd dirc;make -j8)
Problems:
- Sequential
- Idle processors at the end of each directory
Solution:
- One huge makefile
- Use a script to make one makefile from many
Notes: