I have a makefile that is to be built by [Microsoft] nmake. It references another file as an include. I do not get to modify the included file. The problem is that one of the user-defined macros used by both isn't quite right for use by the include. How can I redefine this macro ONLY for where it's used in the include?
I tried something like:
`B=$(A)
A=$(C)
!include myfile.make
A=$(B)`
nmake, however did not like this. Is there another way to do this?