The Make Utility

Make is an essential tool for managing large projects. It saves time by only compiling those modules that have been changed since the last build. To learn more about make I recommend either of these books.

MSDOS users should note that they *must* use the make utility that is supplied with Microsoft's Visual C++ package. This utility is named 'nmake', so everytime they see 'make' in this document, they must substitute 'nmake'.

TechNote: The reason that MSDOS users *must* use nmake, is that only nmake permits three recursive calls to make, followed by a call to pmcc, followed by a call to the compiler without running out of memory.


Navigation: Document Home | Document Contents | Document Index