Go to the first, previous, next, last section, table of contents.


Keeping C files around

The c/Makefile* complex normally creates .c files on the fly as needed from the corresponding .t files:

This avoids needless clutter, but it can also frustrate source-level debuggers configured to (for example) display the contents of .c files during debugging.

To defeat automatic deletion of .c files, do

setenv MUQ_KEEP_C_FILES true

either by hand or in your `.login' file.


Go to the first, previous, next, last section, table of contents.