# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 4371 | Chris Comparini | No longer needed in this branch. | ||
#1 | 4331 | Chris Comparini |
Branch of what I hope is _everyone's_ jam branches, if that makes sense. |
||
//guest/david_turner/jam/src/hdrmacro.c | |||||
#1 | 595 | david_turner |
Adding support for the new HDRMACRO builtin. The latter is used to specify a file containing macro definitions that are later used in #include statements, as in: #include MYFILE_H A line like: HDRMACRO mydefs.h ; will parse the file "mydefs.h" for lines of the form: #define MACRO <.......> and #define MACRO "......." and will store their definition in a global dictionary. When a line like #include MACRO is later found during header file processing, the macro will be resolved accordingly.. |