GEOS SDK TechDocs
|
|
7 Grev
|
9 pccom
The mkmf tool exists to create a file named MAKEFILE. The
pmake
program will use this file as a sort of script, using it to determine how to compile and link the geode. However, makefiles can get rather complicated, so it is best to create them using mkmf instead of by hand.
For information about customizing this boilerplate makefile, see pmake .
The mkmf tool uses the following rules to build the makefile:
mkmf
will work with the files in this subdirectory as a unit. The module's name will be added to the CMODULES variable if it contains .c or .goc files; if it contains .asm files, then it will be added to the MODULES list. When using
pmake
, each module will be considered something that can be made, a sort of intermediate step towards making the whole geode. If you do not wish the files in a subdirectory to be incorporated in the program, create a file in the directory called NO_MKMF. This file need have no contents.
GEOS SDK TechDocs
|
|
7 Grev
|
9 pccom