Hi
I'd like to make below nmake code to produce check.mak file with the following contents: $(A) instead I get the following error: "NMAKE : fatal error U1040: internal error : macro expansion" Any suggestions? My nmake version is 9.00.30729.01 (VC 2008).
OPTION = A
FILE = check.mak
all :
@echo "$$($(OPTION))" > $(FILE)