1995
[Table of Contents]
[Previous Section]
[Next Section]
The following is a list of known bugs:
.SOURCE.mk : incl
include "global.mk"
The B node is built by using the "global.mk" in
the B node.
Then, the A node is built by using the "global.mk" in
the A node.
If the "global.mk" in A is removed,
nmake cannot detect that "global.mk" is changed when
the A node is built again.
nmake -Iincl
or to avoid using .SOURCE.mk in the makefile and use:
include "./incl/global.mk"
instead.
[Table of Contents] [Previous Section] [Next Section]